JDBC PostgreSQL
2018-01-09 19:11 更新
JDBC教程 - JDBC PostgreSQL
以下代码显示如何连接到PostgreSQL数据库。
例子
import java.sql.Connection;
import java.sql.DriverManager;
// ww w .j a v a2 s . c o m
public class Main {
public static void main(String[] argv) throws Exception {
Class.forName("org.postgresql.Driver");
Connection connection = DriverManager.getConnection(
"jdbc:postgresql://127.0.0.1:5432/testdb", "userName",
"password");
if (connection != null) {
System.out.println("Connected");
} else {
System.out.println("Failed to make connection!");
}
}
}
以上内容是否对您有帮助:

免费 AI IDE


更多建议: