in reply to Loading bulk data into SQLite
Then at the end (or after 'x' amount of inserts), commit your inserts.my $dbh = DBI->connect("dbi:SQLite:dbname=pedro.lite","","", {AutoCommit => 0}) or die "Can't connect";
$dbh->commit() or die $dbh->errstr;
Chris
|
|---|