Foi assim que fiz uma conexão:(não sei se isso é "melhor prática", mas funciona.)
Importando o driver:
- Clique com o botão direito em seu projeto
- Escolha a propriedade
- Escolha
Java build path
- Escolha
Add external JARS..
e selecione o local para o driver JDBC.
Aqui está o meu código:
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);
}
O URL pode ser de um dos seguintes formatos:
jdbc:postgresql:database
jdbc:postgresql://host/database
jdbc:postgresql://host:port/database