mysql批处理失效
mysql批处理失效分析
- 配置文件的url没有添加参数 rewriteBatchedStatements=true
url=jdbc:mysql://localhost:3306/db00?rewriteBatchedStatements=true
- sql语句的问题,插入语句中 values 后面要加空格
insert into table values (?);// true insert into table values(?);// false
url=jdbc:mysql://localhost:3306/db00?rewriteBatchedStatements=true
insert into table values (?);// true
insert into table values(?);// false