A synonym for the :meth:`_engine.MappingResult.all` method.
(self)
| 1643 | break |
| 1644 | |
| 1645 | def fetchall(self) -> Sequence[RowMapping]: |
| 1646 | """A synonym for the :meth:`_engine.MappingResult.all` method.""" |
| 1647 | |
| 1648 | return self._allrows() |
| 1649 | |
| 1650 | def fetchone(self) -> Optional[RowMapping]: |
| 1651 | """Fetch one object. |