JDBC driver version for a given Postgres version

Started by Shantanu Shekharalmost 6 years ago2 messagesgeneral
Jump to latest
#1Shantanu Shekhar
shekharshan@yahoo.com

We are upgrading our Postgres instance from 9.6.11 to 10.11. Then as part of a second upgrade we will go from 10.11 to 11.6. Currently (with 9.6.11) we are using the 42.2.1 JDBC driver. I am trying to figure out the impact our database upgrade will have on the JDBC driver version but I cannot find any such matrix that maps recommended JDBC driver version to the Postgres RDBMS instance version.
How should I got about researching this information? Any help will be greatly appreciated.
Thanks,
Shantanu

#2Thomas Kellerer
shammat@gmx.net
In reply to: Shantanu Shekhar (#1)
Re: JDBC driver version for a given Postgres version

Shantanu Shekhar schrieb am 14.07.2020 um 14:34:

We are upgrading our Postgres instance from 9.6.11 to 10.11. Then as
part of a second upgrade we will go from 10.11 to 11.6. Currently
(with 9.6.11) we are using the 42.2.1 JDBC driver. I am trying to
figure out the impact our database upgrade will have on the JDBC
driver version but I cannot find any such matrix that maps
recommended JDBC driver version to the Postgres RDBMS instance
version.

How should I got about researching this information? Any help will be
greatly appreciated.

From https://jdbc.postgresql.org/download.html

It supports PostgreSQL 8.2 or newer

You can keep using 42.2.1 or upgrade to the latest release 42.2.14

Thomas