(self, vm: &VirtualMachine)
| 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, |
no test coverage detected