Eclipse开发环境下通过JDBC获取mysql8连接的方法
程序员文章站
2022-03-03 17:40:48
...
1.mysql-connector5获取mysql8连接:
String username = "itat";//用户名
String password = "itat123";//密码
String url = "jdbc:mysql://localhost:3306/itat_test?serverTimezone=Asia/Shanghai&useSSL=false";
/*itat_test为数据库名;
serverTimezone字段必须要写,作用为设置时区,Asia/Shanghai为中国的时区代号
useSSL字段可以不写,作用为指明是否进行SSL连接*/
Connection con = null;
try {
con = DriverManager.getConnection(url, username, password);
} catch (SQLException e) {
e.printStackTrace();
}
2.mysql-connector8获取mysql8连接:
try {
Class.forName("com.mysql.cj.jdbc.Driver");//注册驱动
} catch (ClassNotFoundException e1) {
e1.printStackTrace();
}
String username = "itat";
String password = "itat123";
String url = "jdbc:mysql://localhost:3306/itat_test?serverTimezone=Asia/Shanghai";
Connection con = null;
try {
con = DriverManager.getConnection(url, username, password);
} catch (SQLException e) {
e.printStackTrace();
}
上一篇: node中formidable上传文件
下一篇: fs模块-删除文件