我正在尝试通过 play(1.2.4)+mysql 优化批量插入。我看到一些帖子谈论将以下内容添加到 jdbc 配置(将其添加到连接字符串): useServerPrepStmts=false&rewriteBatchedStatements=true&useCompression=true
我试过这样做:
db=mysql://root@localhost/data?useServerPrepStmts=false&rewriteBatchedStatements=true&useCompression=true
但我得到这个错误:
A database error occured : Cannot connected to the database, The connection property 'useCompression' only accepts values of the form: 'true', 'false', 'yes' or 'no'. The value 'true?useUnicode=yes' is not in this set.
我也尝试使用 db=jdbc:mysql://....
仍然没有运气。我错过了什么?