(self, dbapi_connection: DBAPIConnection)
| 132 | dbapi_connection.close() |
| 133 | |
| 134 | def _do_ping_w_event(self, dbapi_connection: DBAPIConnection) -> bool: |
| 135 | raise NotImplementedError( |
| 136 | "The ping feature requires that a dialect is " |
| 137 | "passed to the connection pool." |
| 138 | ) |
| 139 | |
| 140 | def get_driver_connection(self, connection: DBAPIConnection) -> Any: |
| 141 | return connection |