vertx-jdbc-client
vertx-jdbc-client copied to clipboard
JDBC support for Vert.x
### Version 4.2.3 ### Context given table ``` CREATE TABLE my_table ( ID NUMBER GENERATED ALWAYS AS IDENTITY PRIMARY KEY, author varchar2(20), book BLOB ); ``` I try to INSERT...
### Version v4.2.0 ### Context We have a PostgreSQL database with a column of type Array. The following line of code always returned an `JsonArray` without any problems. Once we...
Hello, I am sharing a demo of broken Batch logic with Oracle Database in Vert.x 4.3.5+ JDBC client. ### Version `4.4.5` ### Context It seems that the client assumes all...
### Version Vert.x 4.2.5 MS-SQL 8.2.2.jre8 Agroal 1.16 ### Context Not sure if it's a Vert.x or MS-SQL or Agroal issue When I call a stored procedure (sqlConnection.preparedQuery(storedProcedure).execute(params)) that may...
The implementation of the SQL client streaming with JDBC will load the entire results set in memory. Here is a short description on how to proceed for the implementation: `JDBCPreparedQuery`...
Hi I have a problem registering a value in Oracle My problem is: I want to store a UUID in a column, If this value is directly in the query,...
### Version Vertx 4.3.8, vertx-jdbc-clinet 4.3.8 ### Context We have a PostgreSQL table with columns of TIMESTAMP WITH TIME ZONE. Whenever we read a certain timestamp where the seconds are...
#### Describe the feature The official configuration(keepaliveTime,initializationFailTimeout,schema) support for HikariCP in HikariCPDataSourceProvider is missing. #### Contribution Change HikariCPDataSourceProvider.java PR: https://github.com/vert-x3/vertx-jdbc-client/pull/296
Hello, i have a small request, could we possibly get rid of this line? https://github.com/vert-x3/vertx-jdbc-client/blob/a1f75763669c2fb0d919d855c03e0d9055d0127d/src/main/java/io/vertx/ext/jdbc/spi/impl/JDBCDecoderImpl.java#L174 It gets triggered for every entry of every time or timestamp column, that i want...