:param reflect:
Optional, automatically load all tables from the bound database.
Defaults to False. ``bind`` is required when this option is set.
- For finer control over loaded tables, use the ``reflect`` method of
- ``MetaData``.
+
+ .. deprecated:: 0.8
+ Please use the :meth:`.MetaData.reflect` method.
:param schema:
The default schema to use for the :class:`.Table`, :class:`.Sequence`, and other
self._sequences = {}
self.bind = bind
if reflect:
+ util.warn("reflect=True is deprecate; please "
+ "use the reflect() method.")
if not bind:
raise exc.ArgumentError(
"A bind must be supplied in conjunction "
arguments and should return a true value for any table to reflect.
"""
- reflect_opts = {'autoload': True}
if bind is None:
bind = _bind_or_error(self)
- conn = None
+
+ if bind.engine is not bind:
+ conn = bind
+ close = False
else:
- reflect_opts['autoload_with'] = bind
conn = bind.contextual_connect()
+ close = True
+
+ reflect_opts = {
+ 'autoload': True,
+ 'autoload_with': bind
+ }
if schema is None:
schema = self.schema
connection=conn))
if views:
available.update(
- bind.dialect.get_view_names(conn or bind, schema)
+ bind.dialect.get_view_names(conn, schema)
)
current = set(self.tables.iterkeys())
for name in load:
Table(name, self, **reflect_opts)
finally:
- if conn is not None and \
- conn is not bind:
+ if close:
conn.close()
def append_ddl_listener(self, event_name, listener):
table_b2 = Table('false', meta2, autoload=True)
table_c2 = Table('is', meta2, autoload=True)
+ @testing.provide_metadata
+ def _test_reflect_uses_bind(self, fn):
+ from sqlalchemy.pool import AssertionPool
+ e = engines.testing_engine(options={"poolclass": AssertionPool})
+ fn(e)
+
+ @testing.uses_deprecated
+ def test_reflect_uses_bind_constructor_conn(self):
+ self._test_reflect_uses_bind(lambda e: MetaData(e.connect(),
+ reflect=True))
+
+ @testing.uses_deprecated
+ def test_reflect_uses_bind_constructor_engine(self):
+ self._test_reflect_uses_bind(lambda e: MetaData(e, reflect=True))
+
+ def test_reflect_uses_bind_constructor_conn_reflect(self):
+ self._test_reflect_uses_bind(lambda e: MetaData(e.connect()).reflect())
+
+ def test_reflect_uses_bind_constructor_engine_reflect(self):
+ self._test_reflect_uses_bind(lambda e: MetaData(e).reflect())
+
+ def test_reflect_uses_bind_conn_reflect(self):
+ self._test_reflect_uses_bind(lambda e: MetaData().reflect(e.connect()))
+
+ def test_reflect_uses_bind_engine_reflect(self):
+ self._test_reflect_uses_bind(lambda e: MetaData().reflect(e))
+
@testing.provide_metadata
def test_reflect_all(self):
existing = testing.db.table_names()
m6.reflect(only=lambda n, m: False)
self.assert_(not m6.tables)
- m7 = MetaData(testing.db, reflect=True)
+ m7 = MetaData(testing.db)
+ m7.reflect()
self.assert_(nameset.issubset(set(m7.tables.keys())))
- try:
- m8 = MetaData(reflect=True)
- self.assert_(False)
- except sa.exc.ArgumentError, e:
- self.assert_(e.args[0]
- == 'A bind must be supplied in '
- 'conjunction with reflect=True')
+ m8 = MetaData()
+ assert_raises(
+ sa.exc.UnboundExecutionError,
+ m8.reflect
+ )
if existing:
print "Other tables present in database, skipping some checks."
# Jython 2.5 on Java 5 lacks unicodedata.normalize
- if not names.issubset(reflected) and hasattr(unicodedata,'normalize'):
+ if not names.issubset(reflected) and hasattr(unicodedata, 'normalize'):
# Python source files in the utf-8 coding seem to
# normalize literals as NFC (and the above are
# Yep. But still ensure that bulk reflection and
# create/drop work with either normalization.
- r = MetaData(bind, reflect=True)
+ r = MetaData(bind)
+ r.reflect()
r.drop_all(checkfirst=False)
r.create_all(checkfirst=False)