sequoiadb四颗牙的搬运工,开发postgresql程序一样一样的-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3503063
  • 博文数量: 718
  • 博客积分: 1860
  • 博客等级: 上尉
  • 技术积分: 7790
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-07 08:51
个人简介

偶尔有空上来看看

文章分类

全部博文(718)

文章存档

2024年(4)

2023年(74)

2022年(134)

2021年(238)

2020年(115)

2019年(11)

2018年(9)

2017年(9)

2016年(17)

2015年(7)

2014年(4)

2013年(1)

2012年(11)

2011年(27)

2010年(35)

2009年(11)

2008年(11)

最近访客
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: java

2020-04-28 14:17:19


写java代码处理数据的过程跟普通的postgresql数据库一样的。

以下抄自官方培训  如有侵权,将删除

点击(此处)折叠或打开

  1. package com.sequoiadb.postgresql;


  2. import java.sql.connection;
  3. import java.sql.preparedstatement;
  4. import java.sql.resultset;
  5. import java.sql.sqlexception;


  6. public class select {
  7.     private static string url = "jdbc:postgresql://127.0.0.1:5432/company";
  8.     private static string username = "sdbadmin";
  9.     private static string password = "";


  10.     public static void main(string[] args) throws sqlexception {
  11.         select();
  12.     }


  13.     public static void select() throws sqlexception {
  14.         postgresqlconnection pgconnection = new postgresqlconnection(url, username, password);
  15.         connection connection = pgconnection.getconnection();
  16.         string sql = "select * from employee";
  17.         preparedstatement psmt = connection.preparestatement(sql);
  18.         resultset rs = psmt.executequery();
  19.         system.out.println("----------------------------------------------------------------------");
  20.         system.out.println("empno \t ename \t age");
  21.         system.out.println("----------------------------------------------------------------------");
  22.         while(rs.next()){
  23.             integer empno = rs.getint("empno");
  24.             string ename = rs.getstring("ename");
  25.             string age = rs.getstring("age");


  26.             system.out.println(empno "\t" ename "\t" age);
  27.         }
  28.         connection.close();
  29.     }
  30. }

修改

点击(此处)折叠或打开

  1. package com.sequoiadb.postgresql;

  2. import java.sql.connection;
  3. import java.sql.preparedstatement;
  4. import java.sql.sqlexception;

  5. public class update {
  6.     private static string url = "jdbc:postgresql://127.0.0.1:5432/company";
  7.     private static string username = "sdbadmin";
  8.     private static string password = "";

  9.     public static void main(string[] args) throws sqlexception {
  10.         update();
  11.     }

  12.     public static void update() throws sqlexception {
  13.         postgresqlconnection pgconnection = new postgresqlconnection(url, username, passwor
  14. d);
  15.         connection connection = pgconnection.getconnection();
  16.         string sql = "update employee set age = ? where empno = ?";
  17.         preparedstatement psmt = connection.preparestatement(sql);
  18.         psmt.setint(1, 41);
  19.         psmt.setint(2, 10004);
  20.         psmt.execute();

  21.         connection.close();
  22.     }
  23. }

阅读(250713) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图