vertx-sql-client
vertx-sql-client copied to clipboard
High performance reactive SQL Client written in Java
Motivation: Fixes #432 Conformance: Your commits should be signed and you should have signed the Eclipse Contributor Agreement as explained in https://github.com/eclipse/vert.x/blob/master/CONTRIBUTING.md Please also make sure you adhere to the...
Close idle connections that wait in the pool for connectionReleaseDelay milliseconds. Defaults to 0 = keep them forever. The option name is taken from vertx-mysql-postgresql-client: https://github.com/vert-x3/vertx-mysql-postgresql-client/blob/3.9.1/vertx-mysql-postgresql-client-jasync/src/main/java/io/vertx/ext/asyncsql/impl/pool/AsyncConnectionPool.java#L68 Implementation If connectionReleaseDelay is...
Over in https://github.com/hibernate/hibernate-reactive/pull/325 they were trying to create temporary tables and this was not working (no stack trace at the moment). An example of the SQL being used is: ```...
As reported [here](https://github.com/hibernate/hibernate-reactive/issues/306), a parameter of type `Buffer` cannot be used as a parameter of type BLOB or BINARY on the DB2 client. This *does* work on both Postgres and...
## Context Some time ago I made a change that `PreparedStatement` is not cached on the client any more(see https://github.com/eclipse-vertx/vertx-sql-client/commit/e53235cbe2bc2fd96aabe35350ab05ba840b164f), the motivation of that change is to let users control...
This improves the driver API so that a specific DB type can be requested using the generic SqlConnectOptions path. This is necessary for situations when A) user does not want...
JDBC and JPA let me set a timeout on a query. Unless I'm missing something, it's a feature that's still needed in the reactive world, and AFAICT there's currently no...
Fixes #646
Once a transaction has been created with `Connection.begin` it will be associated with the connection, so its implementation keeps it in a field. It can be useful to add an...