Oto jak nawiązałem połączenie:(nie wiem, czy to "najlepsza praktyka", ale działa).
Importowanie sterownika:
- Kliknij prawym przyciskiem myszy swój projekt
- Wybierz właściwość
- Wybierz
Java build path
- Wybierz
Add external JARS..
i wybierz lokalizację sterownika JDBC.
Oto mój kod:
try{
Class.forName("org.postgresql.Driver");
} catch (ClassNotFoundException cnfe){
System.out.println("Could not find the JDBC driver!");
System.exit(1);
}
Connection conn = null;
try {
conn = DriverManager.getConnection
(String url, String user, String password);
} catch (SQLException sqle) {
System.out.println("Could not connect");
System.exit(1);
}
Adres URL może mieć jeden z następujących formatów:
jdbc:postgresql:database
jdbc:postgresql://host/database
jdbc:postgresql://host:port/database