MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / do_executemany

Method do_executemany

lib/sqlalchemy/engine/interfaces.py:2237–2247  ·  view source on GitHub ↗

Provide an implementation of ``cursor.executemany(statement, parameters)``.

(
        self,
        cursor: DBAPICursor,
        statement: str,
        parameters: _DBAPIMultiExecuteParams,
        context: Optional[ExecutionContext] = None,
    )

Source from the content-addressed store, hash-verified

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,

Callers 1

_exec_single_contextMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected