ao-sql-failfast-1.0.1
Release Notes
- Defined SQLSTATE values for all SQLException.
ao-sql-failfast-1.0.0
Release Notes
- New project for fail-fast JDBC wrapper that makes a Connection perform in a fail-fast manner. All access to the connection will fail once a Throwable has been thrown by the underlying driver, with this state only being cleared by rollback.
Registered JDBC driver for default failfast implementation. This is activated by including a prefix in the JDBC URL, and may be combined.
For example, the following JDBC URL will perform fail-fast on top of the PostgreSQL JDBC Driver:
jdbc:failfast:postgresql://host/database
.Finally, the following JDBC URL will perform fail-fast on top of tracking:
jdbc:failfast:tracker:postgresql://host/database
.