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)
| 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 |
no outgoing calls
no test coverage detected