(self, sql: str, data: Union[Sequence, Dict[str, Any]] = ())
| 25 | raise NotImplementedError |
| 26 | |
| 27 | async def execute(self, sql: str, data: Union[Sequence, Dict[str, Any]] = ()) -> str: |
| 28 | raise NotImplementedError |
| 29 | |
| 30 | async def batch_execute(self, sql: List[Union[str, Tuple[str, Union[Sequence, Dict[str, Any]]]]]): |
| 31 | raise NotImplementedError |
no outgoing calls
no test coverage detected