vertx-sql-client
vertx-sql-client copied to clipboard
High performance reactive SQL Client written in Java
A series of improvements to memory usage of SQL clients in general and MySQL in particular. Commits can be reviewed individually.
Motivation: Proposed solution to https://github.com/eclipse-vertx/vertx-sql-client/issues/1214 and https://github.com/eclipse-vertx/vertx-sql-client/issues/646 This could probably be improved a great deal, but I've reached a stage with this one where I'd need some more eyes on...
### Version 4.3.1 ### Context While submitting queries using connections manually retrieved from a pool, PoolOptions'a setConnectionTimeout() seems to take an effect as expected. For example, using a pool with...
### Questions I'm trying to implement RDS IAM Auth with hibernate-reactive which [uses vertx-sql-client pool](https://github.com/hibernate/hibernate-reactive/blob/5540b3cc0be768ed57141071b1c079117b67a5d1/hibernate-reactive-core/src/main/java/org/hibernate/reactive/pool/impl/DefaultSqlClientPool.java#L180). Basically, the single thing I need is to update password in connection options on new...
### Version 4.5.3 ### Context CursorImpl.close never finishes promise in case of it's already closed, all logic in !closed branch. ``` private synchronized void close(Promise promise) { if (!closed) {...
Our quarkus version is 2.7.2.Final and mssql version is 4.2.4 (using the vertx-mssql-client-4.2.4 jar) NTLM authentication applies for jdbc drivers only, and our entire application is built on top of...
#### Support authenticationScheme, integratedSecurity and trustServerCertificate param in sql URI just like they are supported in JDBC URI In vertx-jdbc, one can use following URI and connect to database. `jdbc:sqlserver://something.net;databaseName=mydb1;authenticationscheme=NTLM;integratedSecurity=true;trustServerCertificate=true...
### Version vertx-oracle-client 4.3.2 ### Context I'm unable to connect to the oracle instance with failover/clustering configuration. The connectionURI is constructed in EZConnect format and passed to fromUri() method, below...
Including using `OUT` parameters For Oracle and such. See https://stackoverflow.com/questions/74145676/how-to-set-out-parameter-in-java-quarkus-reactive-client
#### Describe the feature Working with the standard `java.time.Duration` class in postgres is unnecessarily painful. #### Use cases I ran into this issue with a simple query that invokes a...