in reply to Very slow SQLite driver
This may or may not help, but I set a few pragmas when I am working with SQLite to speed things up.
$dbh->do(qq{PRAGMA synchronous=OFF;}); $dbh->do(qq{PRAGMA temp_store=MEMORY;}); [download]