pgjdbc-ng icon indicating copy to clipboard operation
pgjdbc-ng copied to clipboard

A new JDBC driver for PostgreSQL aimed at supporting the advanced features of JDBC and Postgres

Results 69 pgjdbc-ng issues
Sort by recently updated
recently updated
newest added

Hello, thanks for the work on this driver and leveraging asynchronous notify/listen. Unfortunately, the library relies on several outdated dependencies. Is it that nobody maintains this code anymore? Thanks.

Bump some versions to get it to build and resolve CVEs CVE-2021-37136 and CVE-2021-37137 - Java target to v11 - Kotlin to 1.9.10 (latest supported by Gradle) - Gradle to...

I want to change protocol setting ( mentioned [at ](https://impossibl.github.io/pgjdbc-ng/docs/current/user-guide/)) ( protocol.io.threads ) for a given connection. I have set "protocol.io.threads" in java.util.properties() and passed that to java.sql.DriverManager.getConnection(dbUrl,properties) to create...

Hello out there, actually, I'm running into trouble implementing the `PGNotificationListener`Interface. When the Servlet starts-up. the Notification-Listener works fine, but after some time (about 15 minutes or more), the Listener...

status: blocked

Instead of password authentication, we are using token generated by RDS IAM Role Service. For 0.6 version of impossible/pgjdbc- ng driver and java 8,hikari cp it gives error. It is...

Class com.impossibl.postgres.jdbc.ConnectionUtil parses the URLs to connect to a Postgres database. The URL_PATTERN does not allow an unserscore '_' in the host name - although the underscore is a valid...

While I generally approve of the ability to use actual PostgreSQL prepared statements when calling prepareStatement(), this comes with limitations that can make prepared statements impractical: 1. For use cases...

Hi! Is there any support for [stringtype = unspecified ](https://jdbc.postgresql.org/documentation/83/connect.html) or something else which corresponds to this feature as it works in the postgres.org jdbc driver? Thanks!

This portion of the code is executed when PGResultSet.updateRow() is called. The omission of double-quotes around the column names seems to be a typo.

Postgres C client libpq supports several options for setting up TCP keepalive: keepalives_idle keepalives_interval keepalives_count tcp_user_timeout [https://www.postgresql.org/docs/13/libpq-connect.html](https://www.postgresql.org/docs/13/libpq-connect.html) Postgres traditional pgjdbc Java client cannot support equivalent options, because it uses traditional...