Fetch all the rows.
(self)
| 292 | return result |
| 293 | |
| 294 | def fetchall(self): |
| 295 | """Fetch all the rows.""" |
| 296 | self._check_executed() |
| 297 | if self._rows is None: |
| 298 | return [] |
| 299 | if self.rownumber: |
| 300 | result = self._rows[self.rownumber :] |
| 301 | else: |
| 302 | result = self._rows |
| 303 | self.rownumber = len(self._rows) |
| 304 | return result |
| 305 | |
| 306 | def scroll(self, value, mode="relative"): |
| 307 | self._check_executed() |
no test coverage detected