数据库
首页 > 数据库> > 使用8.0版本jdbc驱动连接数据库操作

使用8.0版本jdbc驱动连接数据库操作

作者:互联网

最开始版本会这样连接

Class.forName(“com.mysql.jdbc.Driver”);
Connection con=DriverManager.getConnection("jdbc:mysql://localhost:3306/atest,“root”,“password”);

现在版本
Class.forName(“com.mysql.jdbc.Driver”);
Connection con=DriverManager.getConnection(“jdbc:mysql://localhost:3306/atest?useSSL=false&serverTimezone=UTC”,“root”,“password”);

标签:8.0,DriverManager,jdbc,getConnection,数据库,Driver,mysql,3306
来源: https://blog.csdn.net/weixin_43722571/article/details/95330555