MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / post_exec

Method post_exec

lib/sqlalchemy/engine/interfaces.py:3210–3218  ·  view source on GitHub ↗

Called after the execution of a compiled statement. If a compiled statement was passed to this ExecutionContext, the `last_insert_ids`, `last_inserted_params`, etc. datamembers should be available after this method completes.

(self)

Source from the content-addressed store, hash-verified

3208 raise NotImplementedError()
3209
3210 def post_exec(self) -> None:
3211 """Called after the execution of a compiled statement.
3212
3213 If a compiled statement was passed to this ExecutionContext,
3214 the `last_insert_ids`, `last_inserted_params`, etc.
3215 datamembers should be available after this method completes.
3216 """
3217
3218 raise NotImplementedError()
3219
3220 def handle_dbapi_exception(self, e: BaseException) -> None:
3221 """Receive a DBAPI exception which occurred upon execute, result

Callers 2

_exec_single_contextMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected