(self)
| 356 | return FormatStylePlaceholderCursor(self.connection, self) |
| 357 | |
| 358 | def _commit(self): |
| 359 | if self.connection is not None: |
| 360 | with debug_transaction(self, "COMMIT"), wrap_oracle_errors(): |
| 361 | return self.connection.commit() |
| 362 | |
| 363 | # Oracle doesn't support releasing savepoints. But we fake them when query |
| 364 | # logging is enabled to keep query counts consistent with other backends. |
nothing calls this directly
no test coverage detected