在做项目开发时候,我们在使用mysql时,底层驱动一般都是jdbc,但是我们在执行批量时候,如果不开启rewriteBatchedStatements参数配置时,是无法批量更新的,因为在mysql底层会进行判断
jdbc:mysql://localhost:3306/test?characterEncoding=utf8&allowMultiQueries=true&rewriteBatchedStatements=true
在做项目开发时候,我们在使用mysql时,底层驱动一般都是jdbc,但是我们在执行批量时候,如果不开启rewriteBatchedStatements参数配置时,是无法批量更新的,因为在mysql底层会进行判断
jdbc:mysql://localhost:3306/test?characterEncoding=utf8&allowMultiQueries=true&rewriteBatchedStatements=true