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-pg-client version: `4.2.7` ### Context Hi, developers I have a data analysis system. It needs to read a lot of data in real time. I control the size...

bug

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

### Version 3.9.4 and 4.0.0.Beta3 ### Context when query data with vertx-db2-client, non ascii characters(for example, chinese characters) not encoded correctly ### Steps to reproduce ```kotlin ... val rs =...

bug
help wanted
module:db2

#### Describe the feature Currently the SQL types-Java Object mappings are defined in the client and the row value buffer is decoded as fixed types does not provide an entry...

enhancement

#### Describe the feature We can introduce object pool to improve object allocation, we might directly use Netty [Recycler](https://netty.io/4.1/api/io/netty/util/Recycler.html). #### Use cases In our SQL Client implementations, `CommandBase` and `CommandCodec`...

perf

I had to disable [this test](https://github.com/hibernate/hibernate-reactive/blob/04d999bafcba2b3abdd14ddeed3be1a5c18d1e5f/hibernate-reactive-core/src/test/java/org/hibernate/reactive/BatchQueryOnConnectionTest.java) in Hibernate Reactive on DB2, due to the following error: ``` java.lang.IllegalStateException: Found unknown codepoint: 0x220a / 8714 at io.vertx.db2client.impl.drda.DRDAResponse.throwUnknownCodepoint(DRDAResponse.java:847) at io.vertx.db2client.impl.drda.DRDAConnectResponse.parseCommonError(DRDAConnectResponse.java:121) at io.vertx.db2client.impl.drda.DRDAQueryResponse.parseExecuteError(DRDAQueryResponse.java:1079)...

bug
help wanted
module:db2

### Questions we have F5 VIP for our postgres db, with gtm_monitor set which in realtime points to either the primary or secondary or DR server based on whichever is...

bug

### Version 4.2.6 ### Context DDL ``` CREATE TABLE "TEST"."TBL_MESSAGE" ( "ID" NUMBER(20,0) NOT NULL, ... "ORIGIN_DATA" BLOB, ... ) ``` entity ``` @Data @Table(name = "TBL_MESSAGE") public class TblMessage...

bug
duplicate

I suspect this method handles all encoding for postgres timestamps for the vertx pg client: https://github.com/eclipse-vertx/vertx-sql-client/blob/98c50d8cb463e352931688ff35948435c3abefef/vertx-pg-client/src/main/java/io/vertx/pgclient/impl/codec/DataTypeCodec.java#L1078-L1085 It uses [LocalDateTime.until()](https://docs.oracle.com/javase/8/docs/api/java/time/LocalDateTime.html#until-java.time.temporal.Temporal-java.time.temporal.TemporalUnit-) to truncate down to whole microseconds. The JDBC driver for PGDB...

Postgres' $1, $2, etc, is nonstandard, AFAIK, and contrary to ODBC and JDBC. We should at least have the option to use this syntax if we want to. Issue reported...

module:pg