The assertion that failed was at pager.c, line 2223: assert( pPager->journalOpen );
Can anyone help me figure out what I should be looking for? (i.e. a misuse of SQLite APIs or a bug in SQLite itself)
We're running SQLite version 3.0.8 on Mac OS X.
First, validate the integrity of your database file.
sqlite3 your.db pragma integrity_check;
If the file is integral, then are you linking dynamically or statically? If dynamically, you need to tangle with the make stuff to build and link as a single module (it is a linker option).
b.bum