MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / get_table_names

Method get_table_names

lib/sqlalchemy/engine/interfaces.py:1474–1484  ·  view source on GitHub ↗

Return a list of table names for ``schema``. This is an internal dialect method. Applications should use :meth:`_engine.Inspector.get_table_names`.

(
        self, connection: Connection, schema: Optional[str] = None, **kw: Any
    )

Source from the content-addressed store, hash-verified

1472 raise NotImplementedError()
1473
1474 def get_table_names(
1475 self, connection: Connection, schema: Optional[str] = None, **kw: Any
1476 ) -> List[str]:
1477 """Return a list of table names for ``schema``.
1478
1479 This is an internal dialect method. Applications should use
1480 :meth:`_engine.Inspector.get_table_names`.
1481
1482 """
1483
1484 raise NotImplementedError()
1485
1486 def get_temp_table_names(
1487 self, connection: Connection, schema: Optional[str] = None, **kw: Any

Callers 15

reflectMethod · 0.45
delete_from_all_tablesFunction · 0.45
test_get_table_namesMethod · 0.45
test_metadataMethod · 0.45
test_get_table_namesMethod · 0.45
test_basicMethod · 0.45
test_get_namesMethod · 0.45
test_table_namesMethod · 0.45
drop_tablesFunction · 0.45

Calls

no outgoing calls

Tested by 15

test_get_table_namesMethod · 0.36
test_metadataMethod · 0.36
test_get_table_namesMethod · 0.36
test_basicMethod · 0.36
test_get_namesMethod · 0.36
test_table_namesMethod · 0.36
test_get_tablenamesMethod · 0.36