vertx-sql-client
vertx-sql-client copied to clipboard
High performance reactive SQL Client written in Java
Stacktrace ``` java.lang.IllegalStateException at io.vertx.sqlclient.impl.SocketConnectionBase.schedule(SocketConnectionBase.java:130) at io.vertx.sqlclient.impl.ConnectionPool$PooledConnection.schedule(ConnectionPool.java:111) at io.vertx.sqlclient.impl.Connection.schedule(Connection.java:34) at io.vertx.sqlclient.impl.PreparedStatementImpl.batch(PreparedStatementImpl.java:115) at io.vertx.sqlclient.impl.PreparedStatementImpl.access$000(PreparedStatementImpl.java:45) at io.vertx.sqlclient.impl.PreparedStatementImpl$PreparedStatementQuery.executeBatch(PreparedStatementImpl.java:173) ``` ### Version 3.9.0 ### Context I won't have a complete reproducer as the full...
#### Describe the feature * Add support for MySQL CLIENT_OPTIONAL_RESULTSET_METADATA flag so we can tell the server whether the resultset metadata is necessary in the query response. * We can...
Now that the DB2 module has a good amount of functionality and is getting close to a minimum viable product, I need to go over the codebase and resolve all...
Client-side prepared statement(also known as parameter interpolation) is a useful feature. Being different from server-side prepared statements, the parameters are encoded as text by the client and interpolated into the...
I am using version 3.8.2, lately this exception randomly happen when i execute `preparedQuery` with `Promise.promise()`, Code: ```kotlin private fun addData(json: JsonObject) { val dataPromiseList: MutableList = arrayListOf() fun insertData(data:...
I have a reactive pipeline that processes some data and then at some point stores as well as reads data from a psql database. I have noticed now if one...
We are using thew new vertx reactive SQL client for our reporting microservice. Sometimes reports are very heavy and those queries run too much time and the microservice stucks So...
We can add the abilities for MySQL client to compress and decompress packets. Protocol reference: [1] https://dev.mysql.com/doc/dev/mysql-server/8.0.18/page_protocol_basic_compression.html [2] https://dev.mysql.com/doc/refman/8.0/en/connection-compression-control.html Note MySQL 8.0.18 introduces the new compression algorithm `zstd`(see https://dev.mysql.com/worklog/task/?id=12039) and...
Hi Is there any way to disable json decoding on queries that involves json/jsonb fields? I'm working on the clojure (https://github.com/vertx-clojure) adaptation of the pgclient and I found that when...
Add support for more secure authentication mechanisms beyond basic plaintext user/password configuration.