Create a two-phase transaction ID. This id will be passed to do_begin_twophase(), do_rollback_twophase(), do_commit_twophase(). Its format is unspecified.
(self)
| 2109 | raise NotImplementedError() |
| 2110 | |
| 2111 | def create_xid(self) -> Any: |
| 2112 | """Create a two-phase transaction ID. |
| 2113 | |
| 2114 | This id will be passed to do_begin_twophase(), |
| 2115 | do_rollback_twophase(), do_commit_twophase(). Its format is |
| 2116 | unspecified. |
| 2117 | """ |
| 2118 | |
| 2119 | raise NotImplementedError() |
| 2120 | |
| 2121 | def do_savepoint(self, connection: Connection, name: str) -> None: |
| 2122 | """Create a savepoint with the given name. |