下面我们在OushuDBJDBC.java里进行jdbc连接OushuDB的开发。 要通过jdbc连接数据库,首先需要加载JDBC驱动,语法如下:
Class.forName("com.mysql.jdbc.Driver")
DriverManager.getConnection("jdbc:postgresql://localhost:5432/postgres",
"ChangLei", "Password");
conn.createStatement();
conn.prepareStatement(sql);
wget https://jdbc.postgresql.org/d...
然后我们通过DriverManager来获取连接:
Connection conn =
DriverManager.getConnection("jdbc:postgresql://localhost:5432/postgres",
"ChangLei", "Password");
注意这里的getConnection函数的使用方式,getConnection函数一共提供了三种实现 1.通过配置文件的形式连接数据库
2.通过关键字形式连接数据
3.通过连接字符串形式连接数据库
我们在这里举例的方法为第二种。
下面,我们列举了一个完整的连接数据库的代码函数范例。
getConnection(String paramString, Properties paramProperties)
getConnection(String paramString1, String paramString2, String paramString3)
getConnection(String paramString)
public static Connection getConn() {
Connection conn = null;
try {
Class.forName("org.postgresql.Driver");
String url = "jdbc:postgresql://localhost:5432/postgres";
try {
conn = DriverManager.getConnection(url, "ChangLei", "");
}
catch (SQLException e) {
e.printStackTrace();
} }
catch (ClassNotFoundException e) {
e.printStackTrace();
}
return conn;
}