zoukankan      html  css  js  c++  java
  • 数据库连接类

    package util;
    
    import java.sql.*;
    
    public class DBconn {
        static String url = "jdbc:mysql://localhost:3306/student?serverTimezone=UTC";
        static String username = "root";
        static String password = "123";
        static Connection  conn = null;
        static ResultSet rs = null;
        static PreparedStatement ps =null;
        public static void init(){
            try {
                Class.forName("com.mysql.cj.jdbc.Driver");
                conn = DriverManager.getConnection(url,username,password);
            } catch (Exception e) {
                System.out.println("init [SQL驱动程序初始化失败!]");
                e.printStackTrace();
            }
    
        }
    
    
        public static int addUpdDel(String sql){
            int i = 0;
            try {
                ps =  conn.prepareStatement(sql);
                i =  ps.executeUpdate();
            } catch (SQLException e) {
                System.out.println("sql数据库增删改异常");
                e.printStackTrace();
            }
    
            return i;
        }
        public static ResultSet selectSql(String sql){
            try {
                ps =  conn.prepareStatement(sql);
                rs =  ps.executeQuery();
            } catch (SQLException e) {
                System.out.println("sql数据库查询异常");
                e.printStackTrace();
            }
            return rs;
        }
        public static void closeConn(){
            try {
                conn.close();
            } catch (SQLException e) {
                System.out.println("sql数据库关闭异常");
                e.printStackTrace();
            }
        }
    }
  • 相关阅读:
    nginx一键安装脚本
    nginx动静分离之后,设置默认主页
    日志备份
    cc高防主机部署
    原型和原型链
    Git&Github分支
    Git&Github基础
    传输层协议TCP&UDP
    本地库与远程库交互
    SVG
  • 原文地址:https://www.cnblogs.com/mac-13/p/12129659.html
Copyright © 2011-2022 走看看