Fetches all available rows from the cursor.
(self)
| 386 | return result |
| 387 | |
| 388 | def fetchall(self): |
| 389 | """Fetches all available rows from the cursor.""" |
| 390 | self._check_executed() |
| 391 | if self.rownumber: |
| 392 | result = self._rows[self.rownumber :] |
| 393 | else: |
| 394 | result = self._rows |
| 395 | self.rownumber = len(self._rows) |
| 396 | return result |
| 397 | |
| 398 | def scroll(self, value, mode="relative"): |
| 399 | """Scroll the cursor in the result set to a new position according |
nothing calls this directly
no test coverage detected