On Mar 25, 2008, at 1:36 PM, Ahmad Hassan wrote:
> Hello, > I am using sqlalchemy 4.0 in my application to connect to mysql > database. I am running quries through session object which is > instantiated as a (bind=engine, Transactional = True). I am not > using threadlocal strategy. My question is that If I open 10 > connection simultaneouslty then checked-out connection will be equal > to 10. Now if I call commit method then 10 connections will be > returned to the pool. Now if my application exits then pool will > internally close these connections from MYSQL SERVER or not? > when an application exits, all existing database connections are closed unconditionally. Theres no remaining process left to maintain the socket connection. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sqlalchemy?hl=en -~----------~----~----~----~------~----~------~--~---
