=?ISO-8859-2?Q?Zimmer_Andr=E1s?= <[EMAIL PROTECTED]> wrote:
>
> However, at random times I keep getting "library routine called out of
> sequence" errors (in the feeder).
This is the SQLITE_MISUSE error. You can grep for SQLITE_MISUSE
in the source code to find all the cases where this error can be
generated. SQLITE_MISUSE gets generated for things like this:
* Trying to use the same SQLite database connection from two
or more threads at the same time.
* Trying to use an SQLite database connection from within a
Linux signal handler.
* Calling sqlite3_close() on a database connection that has
already been closed.
* Calling sqlite3_step() on a prepared statement that has
already been finalized.
--
D. Richard Hipp <[EMAIL PROTECTED]>
-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------