(self, tables:list[str])
| 253 | return results |
| 254 | |
| 255 | def select(self, tables:list[str]) -> None: |
| 256 | self._create_dbCursor() |
| 257 | for tbl in tables.split(','): |
| 258 | if self._cursor.check_exists_table(tbl): |
| 259 | table = self._cursor.select_table(tbl) |
| 260 | self._save_results(tbl, QueryType.TABLES, table) |
| 261 | AnsiPrint.printResult(table) |
| 262 | else: |
| 263 | AnsiPrint.print_locale("table_not_exists",table_name=tbl) |
| 264 | |
| 265 | def close(self): |
| 266 | if self._cursor: |
no test coverage detected