(self, hard_close: bool = False)
| 2371 | yield row |
| 2372 | |
| 2373 | def _fetchone_impl(self, hard_close: bool = False) -> Any: |
| 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) |