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)
| 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] |