Provide an implementation of ``cursor.executemany(statement, parameters)``.
(
self,
cursor: DBAPICursor,
statement: str,
parameters: _DBAPIMultiExecuteParams,
context: Optional[ExecutionContext] = None,
)
| 2235 | raise NotImplementedError() |
| 2236 | |
| 2237 | def do_executemany( |
| 2238 | self, |
| 2239 | cursor: DBAPICursor, |
| 2240 | statement: str, |
| 2241 | parameters: _DBAPIMultiExecuteParams, |
| 2242 | context: Optional[ExecutionContext] = None, |
| 2243 | ) -> None: |
| 2244 | """Provide an implementation of ``cursor.executemany(statement, |
| 2245 | parameters)``.""" |
| 2246 | |
| 2247 | raise NotImplementedError() |
| 2248 | |
| 2249 | def do_execute( |
| 2250 | self, |
no outgoing calls
no test coverage detected