MCPcopy Index your code
hub / github.com/RustPython/RustPython / implicit_commit

Method implicit_commit

crates/stdlib/src/_sqlite3.rs:2936–2942  ·  view source on GitHub ↗
(self, vm: &VirtualMachine)

Source from the content-addressed store, hash-verified

2934 }
2935
2936 fn implicit_commit(self, vm: &VirtualMachine) -> PyResult<()> {
2937 if self.is_autocommit() {
2938 Ok(())
2939 } else {
2940 self._exec(b"COMMIT\0", vm)
2941 }
2942 }
2943
2944 fn begin_transaction(
2945 self,

Callers 3

commitMethod · 0.80
set_isolation_levelMethod · 0.80
executescriptMethod · 0.80

Calls 2

is_autocommitMethod · 0.80
_execMethod · 0.45

Tested by

no test coverage detected