elephant

PostgreSQL JDBC Driver

An Open source JDBC driver written in Pure Java (Type 4), which communicates using the PostgreSQL native network protocol

Why pgJDBC ?

PostgreSQL JDBC Driver allows Java programs to connect to a PostgreSQL database using standard, database independent Java code. Is an open source JDBC driver written in Pure Java (Type 4), and communicates in the PostgreSQL native network protocol. Because of this, the driver is platform independent; once compiled, the driver can be used on any system.

Latest Releases

pgJDBC has released v42.5.0 on 24 August, 2022. Please see the release notes below.

  • 42.5.0 · 24 August 2022 · Notes
  • 42.4.2 · 17 August 2022 · Notes
  • 42.4.1 · 03 August 2022 · Notes
  • 42.4.0 · 09 JUne 2022 · Notes
feature

Allows Java programs to connect to a PostgreSQL database using standard, database independent Java code

feature

Provides complete implementation of the JDBC specification in addition to some PostgreSQL specific extensions

feature

The current development driver supports eleven server versions and three java environments

Processing a simple query

This example will issue a simple query and print out the first column of each row using a Statement.

Statement st = conn.createStatement();
ResultSet rs = st.executeQuery("SELECT * FROM mytable WHERE columnfoo = 500");
while (rs.next()) {
    System.out.print("Column 1 returned ");
    System.out.println(rs.getString(1));
}
rs.close();
st.close();

Report a bug or Contribute ?

bug

Report a security issue,
here.

support

Support Us

PostgreSQL is free.
Please support our work by making a donation.