服务器之家

服务器之家 > 正文

Java使用JDBC连接postgresql数据库示例

时间:2021-07-12 12:46     来源/作者:韩大猫

本文实例讲述了java使用jdbc连接postgresql数据库。分享给大家供大家参考,具体如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
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();
  }
 }
}

希望本文所述对大家java程序设计有所帮助。

原文链接:https://blog.csdn.net/s465689853/article/details/81217448

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
2021德云社封箱演出完整版 2021年德云社封箱演出在线看
2021德云社封箱演出完整版 2021年德云社封箱演出在线看 2021-03-15
返回顶部