"Michael Ruck" <[EMAIL PROTECTED]> wrote: > Richard, > > I believe his problem is this: > > "Each query is allowed to complete before the other one starts, but each > thread may have multiple statements or result sets open." > > The open resultsets/multiple started statements are causing him = > headaches. >
SQLite allows you to have multiple queries running at the same time in multiple threads, as long as no two threads are running sqlite3_step() at the same moment. Isn't there a list of possible causes for SQLITE_MISUSE somewhere. I seem to remember writing such a list one. Does anybody know where I put it? -- D. Richard Hipp <[EMAIL PROTECTED]> ----------------------------------------------------------------------------- To unsubscribe, send email to [EMAIL PROTECTED] -----------------------------------------------------------------------------