raise NotImplementedError()
- def get_columns(self, connection, table_name, schema=None, info_cache=None):
+ def get_columns(self, connection, table_name, schema=None, **kw):
"""Return information about columns in `table_name`.
Given a [sqlalchemy.engine#Connection], a string `table_name`, and an
raise NotImplementedError()
- def get_primary_keys(self, connection, table_name, schema=None,
- info_cache=None):
+ def get_primary_keys(self, connection, table_name, schema=None, **kw):
"""Return information about primary keys in `table_name`.
Given a [sqlalchemy.engine#Connection], a string `table_name`, and an
raise NotImplementedError()
- def get_foreign_keys(self, connection, table_name, schema=None,
- info_cache=None):
+ def get_foreign_keys(self, connection, table_name, schema=None, **kw):
"""Return information about foreign_keys in `table_name`.
Given a [sqlalchemy.engine#Connection], a string `table_name`, and an
raise NotImplementedError()
- def get_view_names(self, connection, schema=None, info_cache=None):
+ def get_view_names(self, connection, schema=None, **kw):
"""Return a list of all view names available in the database.
schema:
raise NotImplementedError()
- def get_view_definition(self, connection, view_name, schema=None,
- info_cache=None):
+ def get_view_definition(self, connection, view_name, schema=None, **kw):
"""Return view definition.
Given a [sqlalchemy.engine#Connection], a string `view_name`, and an
raise NotImplementedError()
- def get_indexes(self, connection, table_name, schema=None, info_cache=None):
+ def get_indexes(self, connection, table_name, schema=None, **kw):
"""Return information about indexes in `table_name`.
Given a [sqlalchemy.engine#Connection], a string `table_name` and an
raise NotImplementedError()
-
def has_table(self, connection, table_name, schema=None):
"""Check the existence of a particular table in the database.