Return information about columns in ``table_name``. Given a :class:`_engine.Connection`, a string ``table_name``, and an optional string ``schema``, return column information as a list of dictionaries corresponding to the :class:`.ReflectedColumn` dictionary.
(
self,
connection: Connection,
table_name: str,
schema: Optional[str] = None,
**kw: Any,
)
| 1360 | def _overrides_default(self, method_name: str) -> bool: ... |
| 1361 | |
| 1362 | def get_columns( |
| 1363 | self, |
| 1364 | connection: Connection, |
| 1365 | table_name: str, |
| 1366 | schema: Optional[str] = None, |
| 1367 | **kw: Any, |
| 1368 | ) -> List[ReflectedColumn]: |
| 1369 | """Return information about columns in ``table_name``. |
| 1370 | |
| 1371 | Given a :class:`_engine.Connection`, a string |
| 1372 | ``table_name``, and an optional string ``schema``, return column |
| 1373 | information as a list of dictionaries |
| 1374 | corresponding to the :class:`.ReflectedColumn` dictionary. |
| 1375 | |
| 1376 | This is an internal dialect method. Applications should use |
| 1377 | :meth:`.Inspector.get_columns`. |
| 1378 | |
| 1379 | """ |
| 1380 | |
| 1381 | raise NotImplementedError() |
| 1382 | |
| 1383 | def get_multi_columns( |
| 1384 | self, |
no outgoing calls