Fetch all tuples as ordered dictionary list.
(self, position, mode="absolute")
| 398 | return await self.cursor.scroll(self, position, mode=mode) |
| 399 | |
| 400 | def scroll(self, position, mode="absolute"): |
| 401 | """ |
| 402 | Fetch all tuples as ordered dictionary list. |
| 403 | """ |
| 404 | return asyncio.run(self._scrollcur(position, mode)) |
| 405 | |
| 406 | def get_rowcount(self): |
| 407 | if self.pgresult: |
no test coverage detected