Re: [sqlite] open statements upon close

2008-02-04 Thread Ken
I wrote a function to traverse the linked list and print the zSql to stderr. There was indeed a sql statement being left open by my code! Thats a really usefull debugging technique. I might write an extension to implement this in a more formally. Thanks, Ken [EMAIL PROTECTED] wrote: Ken wrote

Re: [sqlite] open statements upon close

2008-02-04 Thread drh
Ken <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm getting a sqlite error when running sqlite3_close. The error indicates > that there are open statements. > > To the best of my knowledge all statements are closed. I loooked at the > sqlite3_close function and call to close the virtual tables

[sqlite] open statements upon close

2008-02-04 Thread Ken
Hi all, I'm getting a sqlite error when running sqlite3_close. The error indicates that there are open statements. To the best of my knowledge all statements are closed. I loooked at the sqlite3_close function and call to close the virtual tables appears to be causing this issue. My ques