The SQLite optimization FAQ at:
http://web.utk.edu/~jplyon/sqlite/SQLite_optimization_FAQ.html
mentions turning off journaling as a last resort. I tried this by forcing 'omitJournal = 1;' at the beginning of sqliteBtreeFactory(), but it causes problems on down the line (failed assertion on pPager->journalOpen in sqlitepager_commit()). Is there another way to do this? I'd like to see if we'll even be able to get the SQLite overhead low enough to use it or if I have to start over.
This isn't a high-reliability context--if the database gets corrupted, we can just toss it and load back off the network.
Any thoughts?
-D
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]