Druid数据库连接池工具类的创建

public class DruidUtils {
private static DataSource ds;

static {
    try {
        Properties pro = new Properties();
        pro.load(DruidUtils.class.getClassLoader().getResourceAsStream("druid.properties"));
        ds = DruidDataSourceFactory.createDataSource(pro);
    } catch (Exception e) {
        e.printStackTrace();
    }
}
public static Connection getConnection() throws SQLException {
    return ds.getConnection();
}
public static void close(Connection conn, Statement stmt, ResultSet rs){
    if(conn != null){
        try {
            conn.close();
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }
    if(stmt != null){
        try {
            stmt.close();
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }
    if(rs != null){
        try {
            rs.close();
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }
}

public static DataSource getDataSource(){
    return ds;
}
//修改参数的方法
//String sql:sql语句
//Object[] params:参数数组
public static int update(String sql,Object[] params){
    Connection conn = null;
    PreparedStatement pstmt = null;
    try{
        conn = getConnection();
        pstmt = conn.prepareStatement(sql);
        //获取到参数个数
        ParameterMetaData md = pstmt.getParameterMetaData();
        //参数的个数
        int num = md.getParameterCount();
        //将参数赋值给对应的?号
        for (int i = 0; i < num; i++) {
            pstmt.setObject(i+1,params[i]);
        }
        return pstmt.executeUpdate();
    }catch (Exception e){
        e.printStackTrace();
    }finally {
        close(conn,pstmt,null);
    }
    return 0;
}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值