(self, dbname:str)
| 42 | If database exists, drop and create |
| 43 | """ |
| 44 | def create_database(self, dbname:str): |
| 45 | raise ModuleNotFoundError(f"{str(self)} Not implemented") |
| 46 | |
| 47 | def create_table(self, name:str, columns=None): |
| 48 | raise ModuleNotFoundError(f"{str(self)} Not implemented") |