(
cls,
dialect: Dialect,
connection: Connection,
dbapi_connection: PoolProxiedConnection,
execution_options: _ExecuteOptions,
statement: str,
parameters: _DBAPIMultiExecuteParams,
)
| 3106 | |
| 3107 | @classmethod |
| 3108 | def _init_statement( |
| 3109 | cls, |
| 3110 | dialect: Dialect, |
| 3111 | connection: Connection, |
| 3112 | dbapi_connection: PoolProxiedConnection, |
| 3113 | execution_options: _ExecuteOptions, |
| 3114 | statement: str, |
| 3115 | parameters: _DBAPIMultiExecuteParams, |
| 3116 | ) -> ExecutionContext: |
| 3117 | raise NotImplementedError() |
| 3118 | |
| 3119 | @classmethod |
| 3120 | def _init_default( |
no outgoing calls