MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / get_table_names

Method get_table_names

lib/sqlalchemy/engine/interfaces.py:1507–1517  ·  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

1505 raise NotImplementedError()
1506
1507 def get_table_names(
1508 self, connection: Connection, schema: Optional[str] = None, **kw: Any
1509 ) -> List[str]:
1510 """Return a list of table names for ``schema``.
1511
1512 This is an internal dialect method. Applications should use
1513 :meth:`_engine.Inspector.get_table_names`.
1514
1515 """
1516
1517 raise NotImplementedError()
1518
1519 def get_temp_table_names(
1520 self, connection: Connection, schema: Optional[str] = None, **kw: Any

Callers 15

reflectMethod · 0.45
delete_from_all_tablesFunction · 0.45
test_with_metadataMethod · 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

Calls

no outgoing calls

Tested by 15

test_with_metadataMethod · 0.36
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