Method
exec
(
self,
statement: Select[_TSelectParam],
*,
params: Mapping[str, Any] | Sequence[Mapping[str, Any]] | None = None,
execution_options: Mapping[str, Any] = util.EMPTY_DICT,
bind_arguments: dict[str, Any] | None = None,
_parent_execute_state: Any | None = None,
_add_event: Any | None = None,
)
Source from the content-addressed store, hash-verified
| 25 | class Session(_Session): |
| 26 | @overload |
| 27 | def exec( |
| 28 | self, |
| 29 | statement: Select[_TSelectParam], |
| 30 | *, |
| 31 | params: Mapping[str, Any] | Sequence[Mapping[str, Any]] | None = None, |
| 32 | execution_options: Mapping[str, Any] = util.EMPTY_DICT, |
| 33 | bind_arguments: dict[str, Any] | None = None, |
| 34 | _parent_execute_state: Any | None = None, |
| 35 | _add_event: Any | None = None, |
| 36 | ) -> TupleResult[_TSelectParam]: ... |
| 37 | |
| 38 | @overload |
| 39 | def exec( |