A synonym for the :meth:`_engine.ScalarResult.all` method.
(self)
| 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. |