MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _fetchmany_impl

Method _fetchmany_impl

lib/sqlalchemy/engine/cursor.py:2379–2380  ·  view source on GitHub ↗
(self, size: Optional[int] = None)

Source from the content-addressed store, hash-verified

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)
2381
2382 def _raw_row_iterator(self) -> Any:
2383 return self._fetchiter_impl()

Callers

nothing calls this directly

Calls 1

fetchmanyMethod · 0.45

Tested by

no test coverage detected