Java mysql连接

public class BaseDao {
        //定义驱动
        private String driver="com.mysql.jdbc.Driver";
        //定义数据库地址
        private String url="jdbc:mysql://localhost:3306/kj12?characterEncoding=UTF8&serverTimezone=UTC";
        //定义用户名
        private String userName="root";
        //定义密码
        private String password="root";

        //创建Connection
        private Connection conn=null;
        //创建PreparedStatement
        private PreparedStatement pstm=null;

    /**
     * 获取连接
     * @return
     */
    public Connection getConn(){
            try {
                //加载驱动
                Class.forName(driver);
                //连接数据库
                return conn= DriverManager.getConnection(url,userName,password);
            } catch (ClassNotFoundException e) {
                System.out.println("连接驱动失败!");
            } catch (SQLException throwables) {
                System.out.println("连接数据库失败!");
            }
            return null;
        }

    /**
     * 关闭资源
     * @param res
     * @param pstm
     * @param conn
     */
        public void closeAll(ResultSet res, PreparedStatement pstm,Connection conn){
            if (res!=null){
                try {
                    res.close();
                } catch (SQLException throwables) {
                    throwables.printStackTrace();
                }
            }
            if (pstm!=null){
                try {
                    pstm.close();
                } catch (SQLException throwables) {
                    throwables.printStackTrace();
                }
            }
            if (conn!=null){
                try {
                    conn.close();
                } catch (SQLException throwables) {
                    throwables.printStackTrace();
                }
            }
        }

    /**
     * 增通用删改方法
     * @param sql
     * @param objects
     * @return
     */
        public int executeUpdate(String sql,Object... objects){
            //获取连接
            conn=getConn();
            int res=0;
            try {
                //接收sql语句
                pstm=conn.prepareStatement(sql);
                //将sql语句中的?填充指定参数
                for (int i = 0; i < objects.length; i++) {
                   pstm.setObject(i+1,objects[i]);
                }
                //执行增删改sql
                res=pstm.executeUpdate();
            } catch (SQLException throwables) {
                throwables.printStackTrace();
            }finally {
                //关闭资源
                closeAll(null,pstm,conn);
            }
            return res;
        }

    /**
     * 通用查询方法
     * @param sql
     * @param objects
     * @return
     */
    public ResultSet executeQuery(String sql,Object... objects){
        //获取连接
        conn=getConn();
        ResultSet res=null;
        try {
            //接收sql语句
            pstm=conn.prepareStatement(sql);
            //将sql语句中的?填充指定参数
            for (int i = 0; i < objects.length; i++) {
                pstm.setObject(i+1,objects[i]);
            }
            //执行查询sql
            res=pstm.executeQuery();
        } catch (SQLException throwables) {
            throwables.printStackTrace();
        }
        //将结果集返回
        return res;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值