impossibl / pgjdbc-ng

A new JDBC driver for PostgreSQL aimed at supporting the advanced features of JDBC and Postgres
https://impossibl.github.io/pgjdbc-ng
Other
596 stars 108 forks source link

update protocol properties at the time of connection creation #577

Open rajatgoyal247341 opened 1 year ago

rajatgoyal247341 commented 1 year ago

I want to change protocol setting ( mentioned at ) ( 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 the connection. But looks like it is still working on default size ( 3) only.

I used the same way to set "housekeeper.enabled" and worked perfectly. How come it is not working for "protocol.io.threads" ?

Please let me know how can we change it ?

We are using 0.8.4 version of jar as dependency.