]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- the various "engine" arguments, such as "engine", "connectable",
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 12 Jul 2007 22:03:48 +0000 (22:03 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 12 Jul 2007 22:03:48 +0000 (22:03 +0000)
commitd115a8c94e5bdbc6675e0d8bb14269beedcdc9ae
treeb3436548fdb176a282ad7f092efc4ba177160e45
parent91e511cce53792f6348a5b471e84c67dea15eb9a
- the various "engine" arguments, such as "engine", "connectable",
"engine_or_url", "bind_to", etc. are all present, but deprecated.
they all get replaced by the single term "bind".  you also
set the "bind" of MetaData using
metadata.bind = <engine or connection>.  this is part of 0.4
forwards compatibility where "bind" is the only keyword.
[ticket:631]
CHANGES
lib/sqlalchemy/ext/sqlsoup.py
lib/sqlalchemy/orm/session.py
lib/sqlalchemy/schema.py
lib/sqlalchemy/sql.py
test/engine/alltests.py
test/engine/bind.py [new file with mode: 0644]