数据库
首页 > 数据库> > MySQL 各版本连接驱动字符串

MySQL 各版本连接驱动字符串

作者:互联网

绪论

MySQL版本与连接驱动的版本有严格的对应关系,所以在这里记录一下

MySQL 5.7

jdbc.drive=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8&useSSL=false
jdbc.username=root
jdbc.password=123456

注意:好像现在MySQL5.7的新版本也需要设置时区了;如果上面的连接不上MySQL,就用下面的这个

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8&useSSL=false&&serverTimezone=UTC
jdbc.username=root
jdbc.password=123456

MySQL 8

jdbc.driver=com.mysql.cj.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8&useSSL=false&&serverTimezone=UTC
jdbc.username=root
jdbc.password=123456

标签:jdbc,false,MySQL,3306,useSSL,版本,mysql,字符串
来源: https://www.cnblogs.com/marmaladeHY/p/15498280.html