Dixon <[EMAIL PROTECTED]> wrote: > I'm running with sqlite 3.3.6 in a windows environment. I have NOT > defined "THREADSAFE=1". My app is single threaded, however, multiple > instances of the app use sqlite3 on the same DB's, simultaneously. My > question -- Does SQLite ever start auxiliary threads? >
No. Not in windows. Under Unix, SQLite has to start a couple of short-lived threads the first time it is used in order to test how threads and posix locks interact on that particular system. Those threads set a global variable then exit and are never restarted. -- D. Richard Hipp <[EMAIL PROTECTED]> ----------------------------------------------------------------------------- To unsubscribe, send email to [EMAIL PROTECTED] -----------------------------------------------------------------------------