You are not logged in.
Having analyzed the tab delimited data and created an appropriate Sqlite3 table what is the fastest way of populating the table?
I have been looping through the creation of insert statements, however it is slow.
What is the fastest.
Thank you.
Richard Maley
Offline
See http://synopse.info/forum/viewtopic.php?id=910
In short:
1) Use a transaction;
2) Use a prepared INSERT statement with ? parameters;
3) Set DB.Synchronous := smOff
All those are standard SQLite3 expectations.
See http://stackoverflow.com/questions/1711 … -of-sqlite
Offline