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
上一篇:Meterpreter命令详解


下一篇:一些毛病