]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- The visit_pool() method of Dialect is removed, and replaced with
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 15 Mar 2010 17:08:31 +0000 (13:08 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 15 Mar 2010 17:08:31 +0000 (13:08 -0400)
commit5dcc32fd5a81c41b50bc35573d190a60a344c3c6
tree10b57e17f0a724b63c9ae122d60b7036c50029df
parentb3ba365eea4984882f6f5f71aa97ac454bc7d96d
- The visit_pool() method of Dialect is removed, and replaced with
on_connect().  This method returns a callable which receives
the raw DBAPI connection after each one is created.   The callable
is assembled into a first_connect/connect pool listener by the
connection strategy if non-None.   Provides a simpler interface
for dialects.
CHANGES
lib/sqlalchemy/connectors/mxodbc.py
lib/sqlalchemy/dialects/postgresql/base.py
lib/sqlalchemy/dialects/postgresql/psycopg2.py
lib/sqlalchemy/dialects/sqlite/base.py
lib/sqlalchemy/engine/base.py
lib/sqlalchemy/engine/default.py
lib/sqlalchemy/engine/strategies.py
lib/sqlalchemy/test/engines.py
test/aaa_profiling/test_zoomark.py
test/aaa_profiling/test_zoomark_orm.py