Provide an implementation of ``cursor.execute(statement)``. The parameter collection should not be sent.
(
self,
cursor: DBAPICursor,
statement: str,
context: Optional[ExecutionContext] = None,
)
| 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, |
no outgoing calls
no test coverage detected