=?ISO-8859-2?Q?Zimmer_Andr=E1s?= <[EMAIL PROTECTED]> wrote: > > Maybe my mistake but I haven't found a notice in the docs that says I > mustn't use SQLite from within a signal handler... Is there any known > workaround to this? >
A single handler is like a separate thread. You can call SQLite from within a single handler as long as the same database connection is not being used by the main thread when the single handler is invoked. If you really need to invoke SQLite from a single handler, consider opening a separate database connection for use by the signal handler. -- D. Richard Hipp <[EMAIL PROTECTED]> ----------------------------------------------------------------------------- To unsubscribe, send email to [EMAIL PROTECTED] -----------------------------------------------------------------------------