MCPcopy Index your code
hub / github.com/fastapi/sqlmodel / exec

Method exec

sqlmodel/ext/asyncio/session.py:34–43  ·  view source on GitHub ↗
(
        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

32
33 @overload
34 async def exec(
35 self,
36 statement: Select[_TSelectParam],
37 *,
38 params: Mapping[str, Any] | Sequence[Mapping[str, Any]] | None = None,
39 execution_options: Mapping[str, Any] = util.EMPTY_DICT,
40 bind_arguments: dict[str, Any] | None = None,
41 _parent_execute_state: Any | None = None,
42 _add_event: Any | None = None,
43 ) -> TupleResult[_TSelectParam]: ...
44
45 @overload
46 async def exec(

Callers

nothing calls this directly

Calls 1

castFunction · 0.85

Tested by

no test coverage detected