I dumped a SQLite database to a .sql file. However, there are about 800 inserts and importing it takes a lot of time. Like a minute or two.
Is there a way to dump the data with multi-row inserts so the import could be faster, similar to the mysql extended inserts?
I have to use the Windows sqlite3.exe command tool.
Or I need a faster import command than sqlite3.exe db.dat < file.sql
Edit the exported sql.file and wrap the sql insert statements into a single transaction.
begin
… (inserts) …
commit
For more information see http://www.sqlite.org/faq.html#q19