Así es como hice una conexión:(No sé si esta es la "mejor práctica", pero funciona).
Importación del controlador:
- Haz clic derecho en tu proyecto
- Elegir propiedad
- Elija
Java build path
- Elija
Add external JARS..
y seleccione la ubicación del controlador JDBC.
Aquí está mi 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);
}
La URL puede tener uno de los siguientes formatos:
jdbc:postgresql:database
jdbc:postgresql://host/database
jdbc:postgresql://host:port/database