标签: scala jdbc
我有一百万个SELECT查询,例如
select id from accountTable where lastname ='' and firstName='' and zip='';
,并将为此使用PreparedStatement。
我知道对于批处理,我只能使用插入/更新/删除操作,而从未见过用于select语句的批处理。
为了提高性能,我想批量执行1000次,请问如何在scala中执行该操作?