Provide an implementation of ``connection.rollback()``, given a DB-API connection. :param dbapi_connection: a DBAPI connection, typically proxied within a :class:`.ConnectionFairy`.
(self, dbapi_connection: PoolProxiedConnection)
| 2021 | raise NotImplementedError() |
| 2022 | |
| 2023 | def do_rollback(self, dbapi_connection: PoolProxiedConnection) -> None: |
| 2024 | """Provide an implementation of ``connection.rollback()``, given |
| 2025 | a DB-API connection. |
| 2026 | |
| 2027 | :param dbapi_connection: a DBAPI connection, typically |
| 2028 | proxied within a :class:`.ConnectionFairy`. |
| 2029 | |
| 2030 | """ |
| 2031 | |
| 2032 | raise NotImplementedError() |
| 2033 | |
| 2034 | def do_commit(self, dbapi_connection: PoolProxiedConnection) -> None: |
| 2035 | """Provide an implementation of ``connection.commit()``, given a |
no outgoing calls
no test coverage detected