[sqlalchemy] Re: connection pool

2007-03-14 Thread vkuznet
Hi, it's not obvious, nothing said in a docs about default pool setup and The Database options section has: pool=None - an actual pool instance. that's why I conclude that pool is NOT setup by default. I just want to confirm that. Valentin. On Mar 14, 1:34 pm, Sébastien LELONG [EMAIL PROTECTED]

[sqlalchemy] Re: connection pool

2007-03-14 Thread Michael Bayer
if you read the entire document, it should be pretty clear that the engine does not function without a connection pool, so there has to be one present by default. The Engine will create its first connection to the database when a SQL statement is executed. As concurrent statements are