这就是我建立联系的方式:(我不知道这是否是“最佳实践”,但它有效。)
导入驱动:
- 右键单击您的项目
- 选择物业
- 选择
Java build path
- 选择
Add external JARS..
并选择 JDBC 驱动程序的位置。
这是我的代码:
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);
}
url 可以是以下格式之一:
jdbc:postgresql:database
jdbc:postgresql://host/database
jdbc:postgresql://host:port/database