JDBC在操作MySQL的时候,实现批处理不仅要调用Batch相关的方法,在获取连接的时候,url参数也有不同
。
如若需要实现批处理,需要在url后加上参数:?rewriteBatchedStatements=true
比如:
#MySQL
user=root
password=123
url=jdbc:mysql://localhost:3306/test?rewriteBatchedStatements=true
driverClass=com.mysql.jdbc.Driver
Oracle中则没有这种骚操作。