Prepare a two phase transaction on the given connection. :param connection: a :class:`_engine.Connection`. :param xid: xid
(self, connection: Connection, xid: Any)
| 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. |
| 2164 | |
| 2165 | :param connection: a :class:`_engine.Connection`. |
| 2166 | :param xid: xid |
| 2167 | |
| 2168 | """ |
| 2169 | |
| 2170 | raise NotImplementedError() |
| 2171 | |
| 2172 | def do_rollback_twophase( |
| 2173 | self, |
no outgoing calls