eclipse连接数据库代码
程序员文章站
2022-05-30 12:28:33
...
public class JdbcUtil {
// MySQL 8.0 以下版本 - JDBC 驱动名及数据库 URL
// static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
// static final String DB_URL = "jdbc:mysql://localhost:3306/RUNOOB";
//
// MySQL 8.0 以上版本 - JDBC 驱动名及数据库 URL
static String JDBC_DRIVER = "com.mysql.cj.jdbc.Driver";
static String DB_URL = "jdbc:mysql://localhost:3306/housedb?useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=UTC";//housedb为mysql中的数据库名称
// 数据库的用户名与密码,需要根据自己的设置
static String USER = "root";
static String PASS = "123456";
static Connection conn=null;
static Statement stmt=null;
public JdbcUtil() {
// super();
DB_URL = "jdbc:mysql://localhost:3306/housedb?useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=UTC";
// System.out.println(DB_URL);
try {
// 注册 JDBC 驱动
Class.forName(JDBC_DRIVER);
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}