in reply to How do I write data in SQLite
Also, stay away from variables named "$a" or "$b" since those have a special meaning for sort().my $sth = $dbh->prepare(" INSERT INTO webpages_data VALUES(?,?,?,?) "); for(@links) { $sth->execute($a,$_,$text[$v],undef); $a++; $v++; }
|
|---|