(self, tablename:str, columns)
| 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") |
| 52 | |
| 53 | def insert_data(self, tablename, data, columns=None): |
| 54 | raise ModuleNotFoundError(f"{str(self)} Not implemented") |
nothing calls this directly
no outgoing calls
no test coverage detected