"Alex Katebi" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > For a in memory connection I get table lock error 6. > I have one in memory connection with many prepared statements for > different tables. > Depending how the statements are interleaved I get a table lock error > when dropping a table. > What is causing of this?
You are trying to drop a table while there's an active statement outstanding (one for which the last call was sqlite3_step). You need to reset or finalize all statements before you can change the schema. Igor Tandetnik _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

