On Sun, 2005-01-30 at 19:56 -0500, Jason Jobe wrote: > Hey out there. > > I'm having a dickens of a time trying to debug a locking issue. I > thought I was doing something simple enough; accessing a database from > within one process with no threading. > > 2005-01-30 19:28:10.736[5716] sqlite:ERROR database table is locked > > Trying again I get > > 2005-01-30 19:28:10.737[5716] sqlite:ERROR cannot commit transaction - > SQL statements in progress > > I can't figure why the db thinks it should be locked. > > Any pointers would be most appreciated. >
Did you remember to sqlite3_finalize() statements that you were finished with? -- D. Richard Hipp <[EMAIL PROTECTED]>

