(self, name:str, columns=None)
| 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") |
| 49 | |
| 50 | def create_columns(self, tablename:str, columns): |
| 51 | raise ModuleNotFoundError(f"{str(self)} Not implemented") |