jdbc公司 rewriteBatchedStatements=true
mysql上的jdbc连接url为insert创建一条语句。
请为oracle、sql server和hsql提供类似的建议。这些数据库服务器是否支持它?
我的基本要求是对多行进行单个insert/update查询。mysql在sql日志中支持这一点。
insert into temp (id,text) values (1,"abc"), (2,"xyz"),
update temp set text='pqr' where id =1;update temp set text='syz' where id =2;
如果启用批插入和 rewritableBatchedStatements=true
在jdbc连接url中。
我需要在hsql,oracle和sqlserver这个。
暂无答案!
目前还没有任何答案,快来回答吧!