sandbox-java/postgres_java/src/main/java/de/swingbe/postgres_java/JavaPostgreSqlRetrieve.java

38 lines
1.2 KiB
Java

package de.swingbe.postgres_java;
import java.sql.*;
import java.util.logging.Level;
import java.util.logging.Logger;
public class JavaPostgreSqlRetrieve {
public static void main(String[] args) {
String url = "jdbc:postgresql://localhost:5432/testdb";
String user = "usr";
String password = "#password";
//get all columns from a table
String query = "SELECT * FROM authors";
//create prepared statement using placeholders instead of directly writing values
try (Connection con = DriverManager.getConnection(url, user, password);
PreparedStatement pst = con.prepareStatement(query);
ResultSet rs = pst.executeQuery()) {
//advance cursor to the next record
//return false if there are no more records in the result set
while (rs.next()) {
System.out.print(rs.getInt(1));
System.out.print(" | ");
System.out.println(rs.getString(2));
}
} catch (SQLException ex) {
Logger lgr = Logger.getLogger(JavaPostgreSqlRetrieve.class.getName());
lgr.log(Level.SEVERE, ex.getMessage(), ex);
}
}
}