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

### Version Vertx: 4.2.4 ### Context When using prepared queries with a really high number of elements a **NoStackTraceThrowable** exception can be raised with the following message: `The number of...

bug

Motivation: see #1111 I'm looking for a little guidance on this. 1. where can i find an integration test i could use to test against while implementing? 2. maybe some...

Insert and select is a common scenario when the id is generated by the database. Different databases have different way to implement this and, at the moment, there is not...

enhancement

Currently, the Reactive Oracle Client executes commands directly on the connection. For this reason, a couple of tests in the TCK have to be ignored (see https://github.com/eclipse-vertx/vertx-sql-client/commit/ae2d36f25b659831910f07b9e172eb2ffc5b30e3). Command scheduling should...

enhancement
module:oracle

### Version 4.1.3 ### Context Using DB2, the following query: ``` select table_name as TABLE_NAME, column_name as COLUMN_NAME, case when data_type = 'CHARACTER VARYING' then 'VARCHAR' else data_type end as...

bug
help wanted
module:db2

With the Postgres and MySQL clients, you can take a connection URI that works with JDBC drivers and parse with the Reactive client parser. I haven't checked for DB2 but...

enhancement
help wanted
module:mssql

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

enhancement

In the HR test suite I had to disable a test, as seen here: https://github.com/hibernate/hibernate-reactive/blob/2ff95a963d18c863853f6258490d4ace341eb00c/hibernate-reactive-core/src/test/java/org/hibernate/reactive/OrderedEmbeddableCollectionTest.java#L32 because of an intermittent error that only occurred on DB2 when running the whole test...

bug
help wanted
module:db2

Sometime I want to map Json column POJO object. So it's great if I can set json column as Buffer (utf-8 string bytes), and get json column as Buffer when...

enhancement

We should clarify more specifically how the TLS is configured in the documentation, we also need to add tests for the SSLMode `VERIFY_FULL`(Postgres) and `VERIFY_IDENTITY`(MySQL) to test the hostname verification.

documentation