Provide an implementation of ``connection.commit()``, given a DB-API connection. :param dbapi_connection: a DBAPI connection, typically proxied within a :class:`.ConnectionFairy`.
(self, dbapi_connection: PoolProxiedConnection)
| 2032 | raise NotImplementedError() |
| 2033 | |
| 2034 | def do_commit(self, dbapi_connection: PoolProxiedConnection) -> None: |
| 2035 | """Provide an implementation of ``connection.commit()``, given a |
| 2036 | DB-API connection. |
| 2037 | |
| 2038 | :param dbapi_connection: a DBAPI connection, typically |
| 2039 | proxied within a :class:`.ConnectionFairy`. |
| 2040 | |
| 2041 | """ |
| 2042 | |
| 2043 | raise NotImplementedError() |
| 2044 | |
| 2045 | def do_terminate(self, dbapi_connection: DBAPIConnection) -> None: |
| 2046 | """Provide an implementation of ``connection.close()`` that tries as |