vertx-sql-client icon indicating copy to clipboard operation
vertx-sql-client copied to clipboard

High performance reactive SQL Client written in Java

Results 177 vertx-sql-client issues
Sort by recently updated
recently updated
newest added

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: ```...

bug
help wanted
module:db2

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...

bug
help wanted
module:db2

## 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...

enhancement

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...

backport required

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...

enhancement

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...

enhancement