Return all scalar values in a sequence. Equivalent to :meth:`_engine.Result.all` except that :class:`_engine.RowMapping` values, rather than :class:`_engine.Row` objects, are returned.
(self)
| 1674 | return self._manyrow_getter(self, size) |
| 1675 | |
| 1676 | def all(self) -> Sequence[RowMapping]: |
| 1677 | """Return all scalar values in a sequence. |
| 1678 | |
| 1679 | Equivalent to :meth:`_engine.Result.all` except that |
| 1680 | :class:`_engine.RowMapping` values, rather than :class:`_engine.Row` |
| 1681 | objects, are returned. |
| 1682 | |
| 1683 | """ |
| 1684 | |
| 1685 | return self._allrows() |
| 1686 | |
| 1687 | def __iter__(self) -> Iterator[RowMapping]: |
| 1688 | return self._iter_impl() |