MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / fetchall

Method fetchall

lib/sqlalchemy/engine/result.py:1357–1360  ·  view source on GitHub ↗

A synonym for the :meth:`_engine.ScalarResult.all` method.

(self)

Source from the content-addressed store, hash-verified

1355 break
1356
1357 def fetchall(self) -> Sequence[_R]:
1358 """A synonym for the :meth:`_engine.ScalarResult.all` method."""
1359
1360 return self._allrows()
1361
1362 def fetchmany(self, size: Optional[int] = None) -> Sequence[_R]:
1363 """Fetch many objects.

Callers

nothing calls this directly

Calls 1

_allrowsMethod · 0.80

Tested by

no test coverage detected