概述
package tool;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
public class PsqlConnectionTool {
private String url = "jdbc:postgresql://xxx.xxx.xxx.xxx:5432/testdb";
private String username = "postgres";
private String password = "postgres";
private Connection connection = null;
public Connection getConn() {
try {
Class.forName("org.postgresql.Driver").newInstance();
connection = DriverManager.getConnection(url, username, password);
} catch (InstantiationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return connection;
}
public ResultSet query(Connection conn, String sql) {
PreparedStatement pStatement = null;
ResultSet rs = null;
try {
pStatement = conn.prepareStatement(sql);
rs = pStatement.executeQuery();
} catch (SQLException e) {
e.printStackTrace();
}
return rs;
}
public boolean queryUpdate(Connection conn, String sql) {
PreparedStatement pStatement = null;
int rs = 0;
try {
pStatement = conn.prepareStatement(sql);
rs = pStatement.executeUpdate();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if (rs > 0) {
return true;
}
return false;
}
public static void main(String[] args) throws SQLException {
PsqlConnectionTool pgtool = new PsqlConnectionTool();
Connection myconn = pgtool.getConn();
pgtool.queryUpdate(myconn, "insert into test values (1,'smoon','man')");
ResultSet rs = pgtool.query(myconn, "select * from test");
while(rs.next()){
int id = rs.getInt("id");
String name = rs.getString("name");
String gender = rs.getString("gender");
System.out.println("id:"+id+" 姓名:"+name+" 性别:"+gender);
myconn.close();
}
}
}
最后
以上就是沉静紫菜为你收集整理的JDBC连接postgresql例子的全部内容,希望文章能够帮你解决JDBC连接postgresql例子所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复