(self)
| 297 | return [str(h) for h in self.headers] |
| 298 | |
| 299 | def _get_headers(self): |
| 300 | return [ |
| 301 | ColumnHeader(d[0]) for d in self._description |
| 302 | ] if self._description else [ColumnHeader("--")] |
| 303 | |
| 304 | def _get_numerics(self): |
| 305 | if hasattr(self.connection.Database, "NUMBER"): |