(
self,
result: CursorResult[Unpack[TupleAny]],
dbapi_cursor: DBAPICursor,
size: Optional[int] = None,
)
| 1102 | raise NotImplementedError() |
| 1103 | |
| 1104 | def fetchmany( |
| 1105 | self, |
| 1106 | result: CursorResult[Unpack[TupleAny]], |
| 1107 | dbapi_cursor: DBAPICursor, |
| 1108 | size: Optional[int] = None, |
| 1109 | ) -> Any: |
| 1110 | raise NotImplementedError() |
| 1111 | |
| 1112 | def fetchall( |
| 1113 | self, |
no outgoing calls
no test coverage detected