用java訪問數(shù)據(jù)庫DB2代碼的實(shí)際操作
以下的文章主要是介紹用java訪問數(shù)據(jù)庫DB2代碼的實(shí)際操作步驟,首先我們是從創(chuàng)建表語句開始的,以下就是文章的主要內(nèi)容描述,望大家在j對(duì)ava訪問數(shù)據(jù)庫DB2代碼的實(shí)際操作步驟瀏覽之后會(huì)對(duì)其有更深的了解。
建表語句:
- create table test (id int,name varchar(20),password varchar(20))
插入一條數(shù)據(jù):
- insert into test values (1,'zhu','yan')
java 代碼:
- package com.test;
- import java.sql.Connection;
- import java.sql.DriverManager;
- import java.sql.ResultSet;
- import java.sql.SQLException;
- import java.sql.Statement;
- public class ConnToDB2 {
//獲得數(shù)據(jù)庫連接
- public static Connection getconn(String location,String username,String password)
- {
- Connection conn = null;
- try {
- Class.forName("com.ibm.DB2.jcc.DB2Driver");
- } catch (ClassNotFoundException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- try {
- conn = DriverManager.getConnection(location,username,password);
- } catch (SQLException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- return conn;
- }
//查詢數(shù)據(jù)
- public static void select()throws Exception
- {
- Connection conn = getconn("jdbc:DB2://192.168.10.100:50000/yan", "DB2inst1", "abc");
- Statement stmt = conn.createStatement();
- ResultSet rs = stmt.executeQuery("select *from test");
- System.out.println("表中的數(shù)據(jù)如下:");
- while (rs.next())
- {
- System.out.println(rs.getInt(1)+"\t"+rs.getString(2)+"\t"+rs.getString(3));
- }
- stmt.close();
- conn.close();
- }
//插入數(shù)據(jù)
- public static void insert()throws Exception
- {
- System.out.println("插入數(shù)據(jù)....");
- Connection conn = getconn("jdbc:DB2://192.168.10.100:50000/yan", "DB2inst1", "abc");
- Statement stmt = conn.createStatement();
- int rs = stmt.executeUpdate("insert into test values (3,'li','si')");
- stmt.close();
- conn.close();
- System.out.println();
- }
//跟新數(shù)據(jù)
- public static void update()throws Exception
- {
- System.out.println("更新數(shù)據(jù)....");
- Connection conn = getconn("jdbc:DB2://192.168.10.100:50000/yan", "DB2inst1", "abc");
- Statement stmt = conn.createStatement();
- int rs = stmt.executeUpdate("update test set password='kkk' where name='li'");
- stmt.close();
- conn.close();
- System.out.println();
- }
//刪除數(shù)據(jù)
- public static void delete()throws Exception
- {
- System.out.println("刪除數(shù)據(jù)....");
- Connection conn = getconn("jdbc:DB2://192.168.10.100:50000/yan", "DB2inst1", "abc");
- Statement stmt = conn.createStatement();
- int rs = stmt.executeUpdate("delete from test where name='li'");
- System.out.println();
- stmt.close();
- conn.close();
- }
- public static void main(String[] args)throws Exception {
- ConnToDB2 con = new ConnToDB2();
- con.select();
- con.insert();
- con.select();
- con.update();
- con.select();
- con.delete();
- con.select();
- }
- }
上述的相關(guān)內(nèi)容就是對(duì)java實(shí)現(xiàn)訪問數(shù)據(jù)庫DB2代碼的描述,希望會(huì)給你帶來一些幫助在此方面。
【編輯推薦】
- DB2數(shù)據(jù)庫性能理解的主要誤區(qū)有哪些?如何避免?
- DB2數(shù)據(jù)庫優(yōu)化時(shí)哪些策略少不了?
- DB2 9對(duì)企業(yè)有那三大幫助?
- 我國IPTV研究目全球領(lǐng)先
- 3G與IPTV是發(fā)展大方向