vertx-sql-client
vertx-sql-client copied to clipboard
High performance reactive SQL Client written in Java
### Version Vertx: 4.1.5 Postgresql: 9, 10 or 11 Java 11 ### Context When using the row stream according to the documentation (https://vertx.io/docs/vertx-pg-client/java/#_cursors_and_streaming), a memory leak appears. After investigations, the...
#### Issue I dont think vertx sql client supports RETURNING BULK COLLECT INTO clause or RETURNING INTO clause. #### Describe the feature Some time we require to know what data...
#### Describe the feature It might be useful to introduce a standardized exception for integrity constraint violations, e.g. something like `java.sql.SQLIntegrityConstraintViolationException`, so that higher layers can detect such a violation...
While trying to leverage the **`SqlConnectOptions.fromUri( URI uri)`** parsing feature in the SQL I ran into a problem with our DB2 url. In Hibernate Reactive we're testing against DB2 via...
I'm working in HR #1059 and trying to leverage the DB-specific SqlConnectOptions parsing of a URL string to allow additional properties on the URL but it looks like the parse...
Motivation: PR for https://github.com/eclipse-vertx/vertx-sql-client/issues/923 Conformance: Your commits should be signed and 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...
#### Describe the feature Postgres supports the storage of valid xml documents with the XMLType. https://www.postgresql.org/docs/9.3/datatype-xml.html I think it would make sense to Map it to a Java String ####...
This PR introduces a way to specify required/preferred server type among multiple servers when several hosts provided to pool factory. Example: ```java PgPool.pool(Vertx.vertx(), List.of(primaryHostOptions, replica1HostOptions, replica2HostOptions), poolOptions.setServerRequirement(PREFER_REPLICA)) ``` Similar functionality...
Currently `prepareBatch` implementation in MySQL is just an emulation for executing `preparedQuery` several times, MySQL Client/Server protocol does not support pipelining the requests therefore users don't benefit much in respect...
PostgreSQL does have a fixed type OID assignments for all the built in types. Extensions will add custom OID that do not have a specific OID and can change according...