mysql批处理失效

mysql批处理失效分析

  1. 配置文件的url没有添加参数 rewriteBatchedStatements=true
    url=jdbc:mysql://localhost:3306/db00?rewriteBatchedStatements=true
    
  2. sql语句的问题,插入语句中 values 后面要加空格
    insert into table values (?);// true
    insert into table values(?);// false
    
posted @ 2022-04-26 19:15  ふじさんのゆき  阅读(169)  评论(0编辑  收藏  举报