MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _fetchall_impl

Method _fetchall_impl

lib/sqlalchemy/engine/cursor.py:2376–2377  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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)
2378
2379 def _fetchmany_impl(self, size: Optional[int] = None) -> Any:
2380 return self.cursor_strategy.fetchmany(self, self.cursor, size)

Callers

nothing calls this directly

Calls 1

fetchallMethod · 0.45

Tested by

no test coverage detected