0
我正在使用一個非常簡單的設置從SELECT查詢生成CSV文件。如何減少(或至少控制)查詢鎖定數據庫讀取的時間窗口?ResultSet:減少時間表被鎖定的時間
下面是一個典型的例子:
private List<String[]> getData(final ResultSet rs) throws SQLException {
final List<String[]> res = new LinkedList<String[]>();
int i = 0;
int stride = 10;
while (rs.next()) {
if (++i % stride == 0) {
System.out.println("Row " + i);
}
if (i >= stride * 10) {
stride = stride * 10;
}
res.add(getRow(rs));
}
System.out.println("*** Total " + i + " rows");
return res;
}