On 1/9/06, Jeff Watkins <[EMAIL PROTECTED]> wrote: > I'm looking for a solution to the locked database. The most recent version > of the code wraps the DB creates in a transaction, but I don't know whether > that's the answer.
That's probably not it. If I remember the sqlite docs correctly, DDL is not transactional in sqlite anyhow (or maybe it was just creates). Regardless, sqlite locks the whole database when a write is happening, so I wonder if something is happening in one thread (like the startup thread) while something else is happening in another. Kevin

