(self)
| 18 | self._cursor = None |
| 19 | |
| 20 | def _validate_arguments(self) -> bool: |
| 21 | result = True |
| 22 | if DatabaseSetting().database_name is None: |
| 23 | result = False |
| 24 | AnsiPrint.print_error(locale.get("databasenull")) |
| 25 | self.databases() |
| 26 | |
| 27 | return result |
| 28 | |
| 29 | def _get_cursor(self): |
| 30 | db = DbConnector(database=DatabaseSetting().database_name, host=DatabaseSetting().host, |
no test coverage detected