MCPcopy Create free account
hub / github.com/pgadmin-org/pgadmin4 / scroll

Method scroll

web/pgadmin/utils/driver/psycopg3/cursor.py:400–404  ·  view source on GitHub ↗

Fetch all tuples as ordered dictionary list.

(self, position, mode="absolute")

Source from the content-addressed store, hash-verified

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:

Callers 6

triggerResetScrollFunction · 0.80
reset_cursor_atMethod · 0.80
genMethod · 0.80
download_binary_dataMethod · 0.80
_scrollcurMethod · 0.80
FileTreeXClass · 0.80

Calls 2

_scrollcurMethod · 0.95
runMethod · 0.45

Tested by

no test coverage detected