如何在MySQL 8的JDBC连接字符串中设置SQL模式?

2022-08-11 00:00:00 mysql jdbc mysql-8.0 connection-string

我最近将MySQL实例从5.7升级到8.0。 我使用JDBC和如下所示的连接字符串连接到我的旧实例:

jdbc:mysql://[host:port]/[database]/?sessionVariables=sql_mode=''

升级到8.0后会导致此错误

com.mysql.cj.exceptions.WrongArgumentException: Malformed database URL, failed to parse the connection string near '='')'.

如何在MySQL 8的JDBC连接字符串中设置SQL模式?


解决方案

似乎是MySQL Connector/J中的错误,我已经为它提出了错误报告:

https://bugs.mysql.com/bug.php?id=92485

相关文章