[Tutor] Squlite3 problem

2007-03-13 Thread Jim Roush
I'm geting the following error message and I'm stumped Traceback (most recent call last): File C:\markets\source\QuantScan\QuantScan4_3.py, line 1362, in module db.close() sqlite3.OperationalError: Unable to close due to unfinalised statements Here 's the relevant code db =

Re: [Tutor] Squlite3 problem

2007-03-13 Thread Jason Massey
I found a similar discussion on the pysqlite mailing list ( http://lists.initd.org/pipermail/pysqlite/2005-August/000127.html) Try committing your changes and then closing your cursor. db.commit() cur.close() db.close() On 3/13/07, Jim Roush [EMAIL PROTECTED] wrote: I'm geting the following