I\'m trying to insert a large amount of records (in the millions) into an SQLite database. The data is read in from a file stream (C++). If I begin a single transaction, per
I am able to insert 10 millions rows in a single transaction without a problem.
My guesses:
Check Limits In SQLite. It may help if you show how you prepare and execute INSERTs in the code.