vertx-sql-client
vertx-sql-client copied to clipboard
High performance reactive SQL Client written in Java
Motivation: When a timeout occurs while waiting for a new connection, the future fails with a simple "Timeout" message without a stack trace. This makes it very difficult to debug...
#### Describe the feature Currently clients using PreparedStatements get no data back from a call to createStream if the query returns no rows. I would like to be able to...
It seems there is no way to specify a deadline/timeout when we call execute method. Sometimes all connections in pool are used by some pretty slow query, then tons of...
#### Describe the feature There doesn't appear to be a way to properly transact on encrypted columns from a SQL Server DB using the reactive client. SQL Server's JDBC driver...
Solves https://github.com/eclipse-vertx/vertx-sql-client/issues/153
In version 4.2.4 io.vertx.sqlclient.impl.PoolBase had accessible field closeFuture and it was possible to correctly create custom connectionProvider and add ConnectionFactory to close future. List lst = pgConnectOptions.stream() .map(options -> driver.createConnectionFactory(vertx.getDelegate(),...
Motivation: Adds a `minSize` parameter to pool options to ensure a minimum # of connection is always connected and available. Conformance: You should have signed the Eclipse Contributor Agreement as...
### Questions We are trying to use vertx-sql-client driver with a Postgres database using SSL connection. We have found that the driver is not working neither in a worker context...
#### Describe the feature [here](https://github.com/eclipse-vertx/vertx-sql-client/blob/master/vertx-pg-client/src/main/java/io/vertx/pgclient/impl/PgConnectionUriParser.java#L42) I saw that we cannot connect to a multi hosts instance of postgres which is mandatory for us. Can you plan supporting multi hosts connection...
It would be great an option to enforce acquisition of connections just from the same context, for maximum performance or been parked if not found any; together with some telemetry...