MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / get_execution_options

Method get_execution_options

lib/sqlalchemy/orm/query.py:1710–1720  ·  view source on GitHub ↗

Get the non-SQL options which will take effect during execution. .. seealso:: :meth:`_query.Query.execution_options` :meth:`_sql.Select.get_execution_options` - v2 comparable method.

(self)

Source from the content-addressed store, hash-verified

1708 return fn(self)
1709
1710 def get_execution_options(self) -> _ImmutableExecuteOptions:
1711 """Get the non-SQL options which will take effect during execution.
1712
1713 .. seealso::
1714
1715 :meth:`_query.Query.execution_options`
1716
1717 :meth:`_sql.Select.get_execution_options` - v2 comparable method.
1718
1719 """
1720 return self._execution_options
1721
1722 @overload
1723 def execution_options(

Calls

no outgoing calls