关于数据库连接操作的工具类DBUtil.java

package Util;

import java.sql.CallableStatement;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import javax.sql.DataSource;

/**
 * 数据库连接
 * @author 吕贤丰
 *
 */
public class DBUtil {

 private static Connection con ;
 private static PreparedStatement  pstmt;
 private static CallableStatement cstmt;
 private static ResultSet rs;
 /**
  * 数据库连接
  * @return   Connection
  */
 public static Connection getConnection(){
  try {
   Context context =(Context)new InitialContext();
   DataSource dataSource =(DataSource)context.lookup("java:comp/env/stus");
   con = dataSource.getConnection();
     } catch (NamingException e) {
   e.printStackTrace();
  } catch (SQLException e) {
   e.printStackTrace();
  }
  
  return con;
 }
 
 /**
  * 数据处理(非事物)
  * @param sql
  * @return pstmt
  */
 public static PreparedStatement getPstmt(String sql){
  try {
   if(con == null || con.isClosed()){
    getConnection();
   }
   pstmt = con.prepareStatement(sql);
  } catch (SQLException e) {
   e.printStackTrace();
  }
  return pstmt;
 }
 
 /**
  * 数据处理(存储过程)
  * @param sql
  * @return
  */
 public static CallableStatement getCstmt(String sql){
  try {
   if(con == null || con.isClosed()){
    getConnection();
   }
   cstmt = con.prepareCall(sql);
  } catch (SQLException e) {
   e.printStackTrace();
  }
  return cstmt;
 }
 /**
  * 修改、删除、添加
  * @return  num(执行影响的行数)
  */
 public static int update(){
  int num = 0;
  try {
   num = pstmt.executeUpdate();
  } catch (SQLException e) {
   e.printStackTrace();
  }
   return num;
 }
 /**
  * 数据查询(SQL)
  * @return rs(结果集)
  */
 public static ResultSet query() {
  try {   
   rs = pstmt.executeQuery();
  } catch (SQLException e) {
   e.printStackTrace();
  }
  return rs;
 }
 
 /**
  * 存储过程执行
  *
  */
 public static boolean execute() {
  try {
   cstmt.execute();
   return true;
  } catch (SQLException e) {
   e.printStackTrace();
  }
  return false;
 }
 
 /**
  * 数据库关闭操作
  */
 public static void close(){
  if(rs!=null){
   try {
    rs.close();
   } catch (SQLException e) {
    e.printStackTrace();
   }
  }else if(cstmt!=null){
   try {
    cstmt.close();
   } catch (SQLException e) {
    e.printStackTrace();
   }
  }else if(pstmt!=null){
   try {
    pstmt.close();
   } catch (SQLException e) {
    e.printStackTrace();
   }
  }else if(con!=null){
   try {
    con.close();
   } catch (SQLException e) {
    e.printStackTrace();
   }
  }
  
 }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值