当前位置:Gxlcms > 数据库问题 > MySQL数据库连接

MySQL数据库连接

时间:2021-07-01 10:21:17 帮助过:2人阅读

static Connecttion getConn() {   //数据库连接
  Connection conn = null;   try {
    //加载数据库驱动
    Class.forName("com.mysql.jdbc.Driver");
    //获取数据库连接
    //url jdbc:mysql://localhost:3306/db_name
    conn = DriverManager.getConnection(url, username. pwd);
    //
   if(conn != null) {
        System.out.println("数据库连接成功。。。。。")
    }

  } }

 

MySQL数据库连接

标签:

人气教程排行