自己开发的Dbutile包(源码2)

21 篇文章 0 订阅
10 篇文章 0 订阅
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;


/**
 * 
 * 
 * 
 * @author yenairong
 */


public class DBUtil {

//使用不用的数据库请加载不同的驱动
private static final String DBDRIVER = "com.mysql.jdbc.Driver";// 驱动类类名


private static final String DBNAME = "";// 数据库名

//数据库连接地址
private static final String DBURL = "jdbc:mysql://localhost:1521/" + DBNAME;// 连接URL


private static final String DBUSER = "root";// 数据库用户名


private static final String DBPASSWORD = "root";// 数据库密码


private static Connection conn = null;


private static PreparedStatement psmt = null;


private static ResultSet rs = null;


// 获取数据库连接


public static Connection getConnection() {


try {


Class.forName(DBDRIVER);// 注册驱动


conn = DriverManager.getConnection(DBURL, DBUSER, DBPASSWORD);// 获得连接对象


} catch (ClassNotFoundException e) {// 捕获驱动类无法找到异常


e.printStackTrace();


} catch (SQLException e) {// 捕获SQL异常


e.printStackTrace();


}


return conn;


}


// 查询数据


public ResultSet select(String sql) throws Exception {


try {


conn = getConnection();


psmt = conn.prepareStatement(sql);


rs = psmt.executeQuery(sql);


return rs;


} catch (SQLException sqle) {


throw new SQLException("select data Exception: "
+ sqle.getMessage());


} catch (Exception e) {


throw new Exception("System error: " + e.getMessage());


}


}


// 插入数据


public int insert(String sql) throws Exception {


int num = 0;// 计数


try {


conn = getConnection();


psmt = conn.prepareStatement(sql);


num = psmt.executeUpdate();


} catch (SQLException sqle) {


throw new SQLException("insert data Exception: "
+ sqle.getMessage());


} finally {


try {


if (psmt != null) {


psmt.close();


}


} catch (Exception e) {


throw new Exception("ps close exception: " + e.getMessage());


}


try {


if (conn != null) {


conn.close();


}


} catch (Exception e) {


throw new Exception("conn close exception: " + e.getMessage());


}


}


return num;


}


// 删除数据


public int delete(String sql) throws Exception {


int num = 0;// 计数


try {


conn = getConnection();


psmt = conn.prepareStatement(sql);


num = psmt.executeUpdate();


} catch (SQLException sqle) {


throw new SQLException("delete data Exception: "
+ sqle.getMessage());


} finally {


try {


if (psmt != null) {


psmt.close();


}


} catch (Exception e) {


throw new Exception("ps close Exception: " + e.getMessage());


}


try {


if (conn != null) {


conn.close();


}


} catch (Exception e) {


throw new Exception("conn close Exception: " + e.getMessage());


}


}


return num;


}


// 修改数据


public int update(String sql) throws Exception {


int num = 0;// 计数


try {


conn = getConnection();


psmt = conn.prepareStatement(sql);


num = psmt.executeUpdate();


} catch (SQLException sqle) {


throw new SQLException("update data Exception: "
+ sqle.getMessage());


} finally {


try {


if (psmt != null) {


psmt.close();


}


} catch (Exception e) {


throw new Exception("ps close Exception: " + e.getMessage());


}


try {


if (conn != null) {


conn.close();


}


} catch (Exception e) {


throw new Exception("conn close Excepiton: " + e.getMessage());


}


}


return num;


}


}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值