Get the autocommit state.
(self)
| 450 | # ##### Generic transaction management methods ##### |
| 451 | |
| 452 | def get_autocommit(self): |
| 453 | """Get the autocommit state.""" |
| 454 | self.ensure_connection() |
| 455 | return self.autocommit |
| 456 | |
| 457 | def set_autocommit( |
| 458 | self, autocommit, force_begin_transaction_with_broken_autocommit=False |