zoukankan      html  css  js  c++  java
  • 工具类的封装DBUtils

    package com.bjpowernode.jdbc.utils;
    
    import java.sql.*;
    
    /**
     * @Author:杨青
     * @Time:2021/10/26 20:13
     * @Description:工具类封装
     *      JDBC工具类,简化JDBC编程
     */
    public class DBUtil {
        /**
         * 工具类中的构造方法都是私有的
         * 因为工具类当中的方法都是静态的,不需要new对象,直接采用类名调用
         */
        private DBUtil(){ }
        //静态代码块在类加载时执行,并且只执行一次
        static {
            try {
                Class.forName("com.mysql.jdbc.Driver");
            } catch (ClassNotFoundException e) {
                e.printStackTrace();
            }
        }
        /**
         * 获取数据库连接对象
         * @return 返回连接对象
         * @throws SQLException
         */
        public static Connection getConnection()throws SQLException {
                return DriverManager.getConnection("jdbc:mysql://localhost:3306/bjpowernode?useSSL=false","root","123456");
        }
    
        /**
         * 关闭资源
         * @param conn  连接对象
         * @param ps    数据库操作对象
         * @param rs    结果集
         */
        public static void close(Connection conn, Statement ps, ResultSet rs){
            if(rs!=null){
                try {
                    rs.close();
                } catch (SQLException throwables) {
                    throwables.printStackTrace();
                }
            }
            if(ps!=null){
                try {
                    ps.close();
                } catch (SQLException throwables) {
                    throwables.printStackTrace();
                }
            }
            if(conn!=null){
                try {
                    conn.close();
                } catch (SQLException throwables) {
                    throwables.printStackTrace();
                }
            }
        }
    }
    

      

  • 相关阅读:
    golang单例模式
    PHP打开并修改文件
    关于文件服设计的一些想法
    Api
    golang Iterate through the fields of a struct in Go
    zookeeper note
    centos 6 install protoc
    todo
    linux route
    build http_load
  • 原文地址:https://www.cnblogs.com/-slz-2/p/15469621.html
Copyright © 2011-2022 走看看