vertx-sql-client
vertx-sql-client copied to clipboard
High performance reactive SQL Client written in Java
When running with GC configurations that result in early promotion, some of the vert.x sqlclient and/or mysqlclient request specific classes might not be freed up during young generation garbage collection...
### Version 4.3.3 ### Context I use [Materialize](https://materialize.com/) and use the PostgreSQL client to connect to it. When the server (or Docker running the server in a container) closes the...
…0 byte Signed-off-by: Billy Yuan Motivation: fixes https://github.com/eclipse-vertx/vertx-sql-client/issues/1215 Conformance: 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 code...
### Version io.vertx:vertx-mysql-client:4.3.2 ### Context I can't connect to RDS using [IAM auth](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html). ### Do you have a reproducer? https://github.com/amkartashov/vertx-mysql-iam-auth-bug This is a test app just to check IAM auth....
#### Read me Read this first before creating an issue: - do not use this issue tracker to ask questions, instead use one of these [channels](https://vertx.io/community/). Questions will likely be...
### Version 4.3.2 ### Context Using cursor with oracle vertx client. I have the following dependencies : ``` def oracleVersion = "21.6.0.0" implementation "com.oracle.database.jdbc:ojdbc11:$oracleVersion" implementation "com.oracle.database.nls:orai18n:$oracleVersion" ``` The code that...
### Version Which version(s) did you encounter this bug ? 4.2.7 and 4.3.1 ### Context The Row.getOffsetDateTime() call does not read timezone information from Postgres DB's timestamptz column. ### Do...
Add support for SSL connection to Oracle DB with sslMode, certPaths and certValues options like it was done in PostgreSQL, MySQL and other clients.
Add support for using cursor/row streaming with Oracle client
#### Describe the feature I`m working on database L7 proxy which providee transparent database-sharding scenarios like Vitess\Apache shardingSphere,now we use jdbc in proxy which makes proxy decode all database`s query...