Bootstrap

JDBC连接数据库



//工具类
publicclass JDBCUtil {
static  String url = "jdbc:mysql://127.0.0.1:3306/sjt2405";//路径
static String user = "root";//数据库账号
static String password = "ROOT";//数据库密码


static{
//加载驱动
try{
            Class.forName("com.mysql.cj.jdbc.Driver");
}catch(ClassNotFoundException e){
            e.printStackTrace();
}
}

//获取连接
publicstatic Connection getConnection(){
        Connection conn=null;
try{
            conn= DriverManager.getConnection(url,user,password);
}catch(SQLException e){
            e.printStackTrace();
}
return conn;
}


publicstaticvoidclose(Connection conn, PreparedStatement ps, ResultSet rs){

try{
if(conn!=null){
                conn.close();
}
if(ps!=null){
                ps.close();
}
if(rs!=null){
                rs.close();
}
}catch(SQLException e){
            e.printStackTrace();
}
}
}

悦读

道可道,非常道;名可名,非常名。 无名,天地之始,有名,万物之母。 故常无欲,以观其妙,常有欲,以观其徼。 此两者,同出而异名,同谓之玄,玄之又玄,众妙之门。

;