(self)
| 165 | AnsiPrint.print_locale("saved_results",saved=file) |
| 166 | |
| 167 | def table_count_rows(self): |
| 168 | self._create_dbCursor() |
| 169 | if self._cursor: |
| 170 | tables = self._cursor.get_tables_count() |
| 171 | if tables: |
| 172 | AnsiPrint.printResult(tables) |
| 173 | else: |
| 174 | AnsiPrint.print_locale("errors.tables_zero") |
| 175 | |
| 176 | def databases(self): |
| 177 | try: |
no test coverage detected