A synonym for the :meth:`_engine.Result.all` method.
(self)
| 918 | break |
| 919 | |
| 920 | def fetchall(self) -> Sequence[Row[Unpack[_Ts]]]: |
| 921 | """A synonym for the :meth:`_engine.Result.all` method.""" |
| 922 | |
| 923 | return self._allrows() |
| 924 | |
| 925 | def fetchone(self) -> Optional[Row[Unpack[_Ts]]]: |
| 926 | """Fetch one row. |