(self)
| 166 | self._template.clear() |
| 167 | |
| 168 | async def db_create(self) -> None: |
| 169 | await self.create_connection(with_db=False) |
| 170 | await self.execute_script(f"CREATE DATABASE {self.database}") |
| 171 | await self.close() |
| 172 | |
| 173 | async def db_delete(self) -> None: |
| 174 | await self.create_connection(with_db=False) |
nothing calls this directly
no test coverage detected