Begin a two phase transaction on the given connection. :param connection: a :class:`_engine.Connection`. :param xid: xid
(self, connection: Connection, xid: Any)
| 2150 | raise NotImplementedError() |
| 2151 | |
| 2152 | def do_begin_twophase(self, connection: Connection, xid: Any) -> None: |
| 2153 | """Begin a two phase transaction on the given connection. |
| 2154 | |
| 2155 | :param connection: a :class:`_engine.Connection`. |
| 2156 | :param xid: xid |
| 2157 | |
| 2158 | """ |
| 2159 | |
| 2160 | raise NotImplementedError() |
| 2161 | |
| 2162 | def do_prepare_twophase(self, connection: Connection, xid: Any) -> None: |
| 2163 | """Prepare a two phase transaction on the given connection. |
no outgoing calls