"DurumDara" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]
> I have this code in my program. Before this I use APSW, but that project's 
> connection object doesn't have close method...

The connection object is released when there are no more
references to it, and there are no outstanding cursors.
The existence of the connection object does not hold a
database open.  In fact the only thing that holds a
database open is cursors inside a transaction.  And if
those exist, calling an explicit close on the connection
object would merely generate an error message that
cursors etc exist.

I recommend reading this document:

 http://www.catb.org/~esr/faqs/smart-questions.html

Roger 


-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to