Re: [sqlalchemy] Re: Exception during cleanup leaking DB connections?

2010-06-28 Thread Michael Bayer
On Jun 28, 2010, at 6:01 PM, jgarbers wrote: > On Jun 25, 9:53 am, Michael Bayer wrote: >> Beyond that, assuming you're using the ORM, and are ensuring that you fully >> exhaust any row-based result sets that you get from Session.execute(), all >> connections are returned to the pool explicitl

[sqlalchemy] Re: Exception during cleanup leaking DB connections?

2010-06-28 Thread jgarbers
On Jun 25, 9:53 am, Michael Bayer wrote: > Beyond that, assuming you're using the ORM, and are ensuring that you fully > exhaust any row-based result sets that you get from Session.execute(), all > connections are returned to the pool explicitly without reliance on GC. Michael, thanks very much