java jdbc操作类_Java-编写一个jdbc操作类
package數據庫操作類;/** Db.java
Created on 2007年8月20日, 上午 8:37*/
import java.io.*;import java.sql.*;importjava.util.Properties;public classDB {privateString driver;privateString url;privateString user;privateString password;privateConnection conn;privateStatement stm;privateResultSet rs;publicDB(){this("DBConf.properties");
}publicDB(String conf) {
loadProperties(conf);
setConn();
}publicConnection getConn(){return this.conn;
}//handle the properties file to get the informations for connection
private voidloadProperties(String conf){
Properties props= newProperties();try{
props.load(newFileInputStream(conf));
}catch(FileNotFoundException e) {
e.printStackTrace();
}catch(IOException e) {
e.printStackTrace();
}this.driver = props.getProperty("driver");this.url = props.getProperty("url");this.user = props.getProperty("user");this.password = props.getProperty("password");
}//implement the Connection
private voidsetConn(){try{
Class.forName(driver);this.conn =DriverManager.getConnection(url,user,password);
}catch(ClassNotFoundException classnotfoundexception) {
classnotfoundexception.printStackTrace();
System.err.println("db: " +classnotfoundexception.getMessage());
}catch(SQLException sqlexception) {
System.err.println("db.getconn(): " +sqlexception.getMessage());
}
}public voiddoInsert(String sql) {try{
Statement statement=conn.createStatement();int i =stm.executeUpdate(sql);
}catch(SQLException sqlexception) {
System.err.println("db.executeInset:" +sqlexception.getMessage());
}
}public voiddoDelete(String sql) {try{
stm=conn.createStatement();int i =stm.executeUpdate(sql);
}catch(SQLException sqlexception) {
System.err.println("db.executeDelete:" +sqlexception.getMessage());
}
}public voiddoUpdate(String sql) {try{
stm=conn.createStatement();int i =stm.executeUpdate(sql);
}catch(SQLException sqlexception) {
System.err.println("db.executeUpdate:" +sqlexception.getMessage());
}
}publicResultSet doSelect(String sql) {try{
stm=conn.createStatement(java.sql.ResultSet.TYPE_SCROLL_INSENSITIVE,java.sql.ResultSet.CONCUR_READ_ONLY);
rs=stm.executeQuery(sql);
}catch(SQLException sqlexception) {
System.err.println("db.executeQuery: " +sqlexception.getMessage());
}returnrs;
}public static voidmain(String[] args){try{
DB db= newDB();
Connection conn=db.getConn();if(conn != null && !conn.isClosed()) {
System.out.println("連結成功");
ResultSet rs= db.doSelect("select * from content");while(rs.next()){
System.out.println(rs.getString(1)+":"+rs.getString(2)+":"+rs.getString(3));
}
rs.close();
conn.close();
}
}catch(SQLException e) {
e.printStackTrace();
}
}
}
總結
以上是生活随笔為你收集整理的java jdbc操作类_Java-编写一个jdbc操作类的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 小程序多个echars_小程序界面与逻辑
- 下一篇: linux ls-l getswd,li