複製代碼代碼如下:
package com.groundhog.codingmouse;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
/**
* 資料庫管理類
* @author CodingMouse
* 2009.2.20
*/
public final class DBManager {
/**
* 資料庫連線對象
*/
private Connection dbConnection = null;
/**
* 資料庫指令執行對象
*/
private PreparedStatement preStatement = null;
/**
* 結果集對象
*/
private ResultSet rsSet = null;
/**
* 資料庫驅動版本號
*/
private static String driverVersion = null;
/**
* 資料庫伺服器登入使用者名稱和密碼字串常數(預設值皆為'sa')
*/
private static String databaseUser = "sa";
private static String databasePassword = "sa";
/**
* 資料庫驅動完整類別名稱字串常數
*/
private static final String
DRIVER_CLASS_SQLSERVER2000 =
"com.microsoft.jdbc.sqlserver.SQLServerDriver"; // SQL
Server 2000 直連
private static final String
DRIVER_CLASS_SQLSERVER2005 =
"com.microsoft.sqlserver.jdbc.SQLServerDriver"; // SQL
Server 2005 直連
private static final String
DRIVER_CLASS_BRIDGECONNECT = "sun.jdbc.odbc.JdbcOdbcDriver";
// ODBC 橋連
/**
* 資料庫連接字串常數
*/
private static final String
DATABASE_URL_SQLSERVER2000 =
"jdbc:microsoft:sqlserver://127.0.0.1:1433;DatabaseName=stuD
B"; // SQL Server 2000 直連
private static final String
DATABASE_URL_SQLSERVER2005 =
"jdbc:sqlserver://127.0.0.1:1433;DatabaseName=stuDB";
// SQL Server 2005 直連
private static final String
DATABASE_URL_BRIDGECONNECT = "jdbc:odbc:stuDBSource";
// ODBC 橋連
/**
* 定義類別本身的實例靜態變數(作用於單例[件]模式的應用)
*/
private static DBManager connectionManager = null;
/**
* 民營化預設建構(作用於單例[件]模式的應用,防止類別被直接使用new關鍵字實例化)
*/
private DBManager() {
super();
}
/**
* 取得資料庫連線管理類別實例的方法(單例[件]模式的應用)
* @param version 資料庫驅動版本號,取值:(version =
2000 | version = 2005 | version = odbc)
* @param user 資料庫伺服器登入使用者名稱
* @param password 資料庫伺服器登入密碼
* @return 資料庫連線管理對象
* @throws Exception 參數錯誤異常
*/
public static DBManager getInstance(
String version,
String user,
String password)
throws Exception {
if (!(version == "2000" || version == "2005"
|| version == "odbc")) {
throw new Exception("資料庫驅動版本號碼不正確,取值只能是“2000/2005/odbc”!");
}
// 儲存資料庫驅動版本號
driverVersion = version;
if (user == null || user.equals("")) {
throw new Exception("資料庫伺服器登入使用者名稱不能為空!");
}
// 儲存資料庫伺服器登入使用者名稱和密碼
databaseUser = user;
databasePassword = password;
// 應用單例[件]模式確保類別本身只有一個實例
if (connectionManager == null) {
connectionManager = new DBManager();
}
// 傳回類別本身的實例
return connectionManager;
}
/**
* 取得資料庫連線的方法
* @return 資料庫連線對象
*/
private Connection getConnection() {
try {
Class.forName(
driverVersion ==
"2000"
?
DRIVER_CLASS_SQLSERVER2000
: (driverVersion ==
"2005"
?
DRIVER_CLASS_SQLSERVER2005
:
DRIVER_CLASS_BRIDGECONNECT));
this.dbConnection =
DriverManager.getConnection(
driverVersion ==
"2000"
?
DATABASE_URL_SQLSERVER2000
: (driverVersion ==
"2005"
?
DATABASE_URL_SQLSERVER2005
:
DATABASE_URL_BRIDGECONNECT),
databaseUser,
databasePassword);
} catch (ClassNotFoundException ex) {
System.err.println("未找到SQL Server
" + driverVersion + "資料庫驅動類別:" + ex.getMessage());
// 在控制台輸出異常堆疊訊息
// ex.printStackTrace();
} catch (Exception ex) {
System.err.println("取得資料庫連線錯誤:" + ex.getMessage());
// 在控制台輸出異常堆疊訊息
// ex.printStackTrace();
}
// 傳回資料庫連線對象
return this.dbConnection;
}
/**
* 取得資料庫指令執行物件的方法
* @param sql 要執行的SQL指令拼裝語句字串
* @return 資料庫指令執行對象
*/
private PreparedStatement getPreparedStatement
(String sql) {
try {
// 根據取得的資料庫連線對象建立資料庫指令執行對象
this.preStatement = getConnection
().prepareStatement(sql);
} catch (Exception ex) {
System.err.println("取得資料庫指令執行物件錯誤:" + ex.getMessage());
// 在控制台輸出異常堆疊訊息
// ex.printStackTrace();
}
// 傳回資料庫指令執行對象
return this.preStatement;
}
/**
* 執行更新語句(Insert|Update|Delete)
* @param sql 要執行的SQL指令拼裝語句字串
* @return 受影響的行數
*/
public int executeUpdate(String sql){
try {
// 置空結果集物件的原有內容
this.rsSet = null;
// 執行語句並傳回受影響行數
return this.getPreparedStatement
(sql).executeUpdate();
} catch (SQLException e) {
System.err.println("更新資料錯誤:" +
e.getMessage());
return 0;
}finally{
// 關閉資料庫連線資源
closeDBResource();
}
}
/**
* 執行查詢語句(Select)
* @param sql 要執行的SQL指令拼裝語句字串
* @return 查詢後的結果集對象
*/
public ResultSet executeQuery(String sql){
try {
// 置空結果集物件的原有內容
this.rsSet = null;
// 執行sql語句取得結果集
this.rsSet =
this.getPreparedStatement(sql).executeQuery();
} catch (SQLException e) {
System.err.println("查詢資料錯誤:" +
e.getMessage());
}
// 傳回結果集對象
return this.rsSet;
}
/**
* 取得執行指定sql語句後的傳回結果集的記錄條數
* @param sql 要執行的SQL指令拼裝語句字串
* @return 查詢結果所得到的記錄條數
*/
public int getResultSetCount(String sql) {
// 儲存得到指定的sql語句執行後傳回記錄行數的計數器變數
int count = 0;
try {
// 置空結果集物件的原有內容
this.rsSet = null;
// 執行sql語句取得結果集
this.rsSet = this.getPreparedStatement
(sql).executeQuery();
// 遍歷結果集並累積計數器
while (this.rsSet.next()) {
count++;
}
} catch (SQLException e) {
e.printStackTrace();
}
return count;
}
/**
* 關閉資料庫連線資源(包含結果集物件、指令執行物件、連線物件)
*/
public void closeDBResource() {
try {
closeResultSet();
closePreparedStatement();
closeConnection();
} catch (SQLException sqlEx) {
System.err.println(sqlEx.getMessage
());
// 在控制台輸出異常堆疊訊息
// sqlEx.printStackTrace();
}
}
/**
* 關閉結果集物件的方法
* @throws SQLException
*/
private void closeResultSet() throws SQLException {
try {
if (this.rsSet != null) {
this.rsSet.close();
this.rsSet = null;
}
} catch (SQLException sqlEx) {
throw new SQLException("關閉結果集物件錯誤:" + sqlEx.getMessage());
// 在控制台輸出異常堆疊訊息
// sqlEx.printStackTrace();
}
}
/**
* 關閉資料庫指令執行物件的方法
* @throws SQLException
*/
private void closePreparedStatement() throws
SQLException {
try {
if (this.preStatement != null) {
this.preStatement.close();
this.preStatement = null;
}
} catch (SQLException sqlEx) {
throw new SQLException("關閉資料庫指令執行物件錯誤:" + sqlEx.getMessage());
// 在控制台輸出異常堆疊訊息
// sqlEx.printStackTrace();
}
}
/**
* 關閉資料庫連線的方法
* @throws SQLException
*/
private void closeConnection() throws SQLException {
try {
if (this.dbConnection != null && (!
this.dbConnection.isClosed())) {
this.dbConnection.close();
}
} catch (SQLException sqlEx) {
throw new SQLException("關閉資料庫連線錯誤:" + sqlEx.getMessage());
// 在控制台輸出異常堆疊訊息
// sqlEx.printStackTrace();
}
}
}