(
self,
result: CursorResult[Unpack[TupleAny]],
dbapi_cursor: DBAPICursor,
hard_close: bool = False,
)
| 1094 | return |
| 1095 | |
| 1096 | def fetchone( |
| 1097 | self, |
| 1098 | result: CursorResult[Unpack[TupleAny]], |
| 1099 | dbapi_cursor: DBAPICursor, |
| 1100 | hard_close: bool = False, |
| 1101 | ) -> Any: |
| 1102 | raise NotImplementedError() |
| 1103 | |
| 1104 | def fetchmany( |
| 1105 | self, |
no outgoing calls
no test coverage detected