JSP中小型網站適用的一個JDBC資料庫聯結類

來源:互聯網
上載者:User
js|資料|資料庫

這個類我本是在參加學校網頁設計大賽時寫的.現在稍加修改藉以討論有關JSP資料庫訪問最佳化的問題.類的內容如下,這個類在不修改任何代碼的情況下適用於MSSQL/MYSQL/ACCESS資料庫的聯結和基本操作.

package mxzc.web.dbctrl;
import java.sql.*;
public final class SQLDBCtrl
{/*********************************************
public SQLDBCtrl(String usr,String pwd,String cnstr,String derv)
public synchronized ResultSet selects(String sql)
public synchronized void updates(String sql)
public synchronized void adddels(String sql)
資料庫操作的函數.
**********************************************/
private String usr;
private String pwd;
private String cnstr;
private String derv;
private bool canuse;
public SQLDBCtrl(String usr,String pwd,String cnstr,String derv)throws SQLException

{
 this.usr=usr;
 this.pwd=pwd;
 this.cnstr=cnstr;
 this.derv=derv;
 this.canuse=true;
 try
 {
  Class.forName(derv);
 }
 catch(ClassNotFoundException e)
 {
  this.canuse=false;
  System.out.println("請確定"+derv+"類所對應的包已包含進程式的環境變數內.");
  e.toString();
 }
}
public SQLDBCtrl()throws SQLException
{
 //這裡是一個空的構造,這個構造可能產生問題....
 this.canuse=false;
}
public String getUsr(){return this.usr;}
public String getPwd(){return this.pwd;}
public String getCnstr(){return this.cnstr;}
public String getDerv(){return this.derv;}
public void setUsr(String usr){this.usr=usr;}
public void setPwd(String pwd){this.pwd=pwd;}
public void setCnstr(String cnstr){this.cnstr=cnstr;}
public void setDerv(String derv)
{//屬性Derv對本類執行個體的可用性有重要意義.
/*
只有Derv被賦值後,這個執行個體才可操作.因為這裡需要載入資料庫的驅動.
為了防止一個沒有載入資料庫驅動的執行個體被使用,我設定了一個Canuse屬性.
只有該屬性為真時,這個執行個體才真正的可操作.
*/
 this.canuse=true;
 this.derv=derv;
 try
 {
  Class.forName(derv);
 }
 catch(ClassNotFoundException e)
 {
  this.canuse=false;
  System.out.println("請確定"+derv+"類所對應的包已包含進程式的環境變數內.");
  e.toString();
 }
}
public bool getCanuse()
{//是否可進行資料庫操作?在操作的資料庫操作之前最好是執行一下.以防出錯.
 return canuse;
}
public synchronized ResultSet selects(String sql)throws Exception
{
 Connection conn=null;
 Statement stmt=null;
 ResultSet rs=null;
 conn=DriverManager.getConnection(cnstr,usr,pwd);
 stmt=conn.createStatement();
 rs=stmt.executeQuery(sql);
 return rs;
}
public synchronized void updates(String sql)throws Exception
{
 Connection conn=null;
 Statement stmt=null;
 conn=DriverManager.getConnection(cnstr,usr,pwd);
 stmt=conn.createStatement();
 stmt.executeUpdate(sql);
 if(stmt!=null)stmt.close();
 if(conn!=null)conn.close();
 stmt=null;
 conn=null;
}
public synchronized void adddels(String sql)throws Exception
{
 Connection conn=null;
 Statement stmt=null;
 conn=DriverManager.getConnection(cnstr,usr,pwd);
 stmt=conn.createStatement();
 stmt.execute(sql);
 if(stmt!=null)stmt.close();
 if(conn!=null)conn.close();
 stmt=null;
 conn=null;
}
public static void main(String args[])throws Exception
{
 System.out.println("");
 System.out.println("************************************************");
 System.out.println(" 包名: mxzc.web.dbctrl");
 System.out.println(" 類名: SQLDBCtrl");
 System.out.println(" 特性: 最終類,安全執行緒");
 System.out.println("  沒有預設建構函式只能有參構造");
 System.out.println(" 作者: 夢醒之初/可心");
 System.out.println(" 版本: 1.10(Update)");
 System.out.println("************************************************");
 //自我裝載用SQLDBCtrl a=new SQLDBCtrl("","","jdbc:odbc:jspbbs","sun.jdbc.odbc.JdbcOdbcDriver");
}
}

在JSP網站中的期望使用方式:

<jsp:useBean id="conn" scope="session" class="mxzc.web.dbctrl.SQLDBCtrl" >
<jsp:setProperty name="conn" property="usr" value="" />
<jsp:setProperty name="conn" property="pwd" value="" />
<jsp:setProperty name="conn" property="cnstr" value="jdbc:mysql://localhost:3306/kexintemp?useUnicode=true&characterEncoding=gbk" />
<jsp:setProperty name="conn" property="derv" value="org.gjt.mm.mysql.Driver" />
</jsp:useBean>



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.