MCPcopy
hub / github.com/django/django / _commit

Method _commit

django/db/backends/oracle/base.py:358–361  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 3

debug_transactionFunction · 0.90
wrap_oracle_errorsFunction · 0.85
commitMethod · 0.80

Tested by

no test coverage detected