Discard changes since the last commit.
(self)
| 550 | self._connection.commit() |
| 551 | |
| 552 | def rollback(self): |
| 553 | """ Discard changes since the last commit. |
| 554 | """ |
| 555 | self._connection.rollback() |
| 556 | |
| 557 | def escape(self, value): |
| 558 | """ Returns the quoted, escaped string (e.g., "'a bird\'s feathers'") for database entry. |
no outgoing calls