(self)
| 2374 | return self.cursor_strategy.fetchone(self, self.cursor, hard_close) |
| 2375 | |
| 2376 | def _fetchall_impl(self) -> Any: |
| 2377 | return self.cursor_strategy.fetchall(self, self.cursor) |
| 2378 | |
| 2379 | def _fetchmany_impl(self, size: Optional[int] = None) -> Any: |
| 2380 | return self.cursor_strategy.fetchmany(self, self.cursor, size) |