]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
made SchemaEngine more prominent as the base of Table association
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 1 Mar 2006 21:20:59 +0000 (21:20 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 1 Mar 2006 21:20:59 +0000 (21:20 +0000)
commitfd8d4a45ea1c2087ed3c4a86bf5f889b194fdb48
tree5afc754c8c249c774f773476dd1d9518ad4b41e7
parentfd8567037269ac937a6b079c6e00022abfc51149
made SchemaEngine more prominent as the base of Table association
BaseProxyEngine descends from SchemaEngine
fixes to sqlite/postgres reflection to use the correct engine for table lookups
Table engine can be none which will default to schema.default_engine (although its
still positional for now, so still needs to be explicit to make room for Columns)
__init__ sets default_engine to be a blank ProxyEngine
fixes to test suite to allow --db proxy.<dbname> to really test proxyengine
lib/sqlalchemy/__init__.py
lib/sqlalchemy/databases/postgres.py
lib/sqlalchemy/databases/sqlite.py
lib/sqlalchemy/engine.py
lib/sqlalchemy/ext/proxy.py
lib/sqlalchemy/schema.py
test/engines.py
test/inheritance.py
test/query.py
test/testbase.py