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
)
| 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 |
no outgoing calls