in reply to Re: fast simple DB (sqlite?) skeleton?
in thread fast simple DB (sqlite?) skeleton?

I had to deal with the same problem a few years ago using Sqlite. It's a lot faster if you insert the whole data as a transaction. Use:
BEGIN TRANSACTION; INSERT ..... COMMIT;
This should speed up the process. Good luck.