MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / pre_exec

Method pre_exec

lib/sqlalchemy/engine/interfaces.py:3164–3172  ·  view source on GitHub ↗

Called before an execution of a compiled statement. If a compiled statement was passed to this ExecutionContext, the `statement` and `parameters` datamembers must be initialized after this statement is complete.

(self)

Source from the content-addressed store, hash-verified

3162 raise NotImplementedError()
3163
3164 def pre_exec(self) -> None:
3165 """Called before an execution of a compiled statement.
3166
3167 If a compiled statement was passed to this ExecutionContext,
3168 the `statement` and `parameters` datamembers must be
3169 initialized after this statement is complete.
3170 """
3171
3172 raise NotImplementedError()
3173
3174 def get_out_parameter_values(
3175 self, out_param_names: Sequence[str]

Callers 1

_execute_contextMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected