MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / do_execute_no_params

Method do_execute_no_params

lib/sqlalchemy/engine/interfaces.py:2261–2273  ·  view source on GitHub ↗

Provide an implementation of ``cursor.execute(statement)``. The parameter collection should not be sent.

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

Source from the content-addressed store, hash-verified

2259 raise NotImplementedError()
2260
2261 def do_execute_no_params(
2262 self,
2263 cursor: DBAPICursor,
2264 statement: str,
2265 context: Optional[ExecutionContext] = None,
2266 ) -> None:
2267 """Provide an implementation of ``cursor.execute(statement)``.
2268
2269 The parameter collection should not be sent.
2270
2271 """
2272
2273 raise NotImplementedError()
2274
2275 def is_disconnect(
2276 self,

Callers 1

_exec_single_contextMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected