我正在尝试更新一大排行(大约5M)。我首先遇到了在结果集中提取了这么多行的堆溢出问题。由于我不想在这台机器上提高我的堆大小,我想知道是否有一种有效的方法。
我尝试设置setFetchSize(Integer.MIN_VALUE)
,但是当我调用更新函数时,我收到此错误:
流式结果集com.mysql.jdbc.RowDataDynamic@2087c268
仍处于活动状态。当任何流式结果集在给定连接上打开并使用时,不会发出任何语句。在尝试更多查询之前,请确保您已在任何活动的流式传输结果集上调用.close()
。
如果我在结果集上调用close()
,我当然无法更新它。这是我的代码
public void getRows()
{
Statement stmt = null;
ResultSet rs = null;
int countSpecialChars = 0;
int upper = 0, lower = 0, digits =0;
String pass = null;
int id = 0;
char thisChar;
String query = "select id,pass from datatable";
try {
this.conn.setAutoCommit(false);
stmt = this.conn.createStatement();
stmt.setFetchSize(Integer.MIN_VALUE);
rs = stmt.executeQuery(query);
while (rs.next()) {
pass = rs.getString(2).trim();
id = rs.getInt(1);
for (int i=0; i<=pass.length()-1; i++)
{
thisChar= pass.charAt(i);
if (thisChar >= 65 && thisChar <= 90) {
upper++;
} else if (thisChar >= 97 && thisChar <= 122) {
lower++;
} else if( thisChar >= 48 && thisChar <= 57) {
digits++;
}
else
{countSpecialChars++;}
}
Entropy entropy = new Entropy();
double naiveEntropy = entropy.naiveEntropy(pass);
NumberFormat formatter = new DecimalFormat("#0.00");
this.updateRow(id, pass.length(), digits, upper, lower, countSpecialChars, Double.parseDouble(formatter.format(naiveEntropy)));
countSpecialChars = 0;
upper=digits=0;
lower = 0;
}
rs.close();
}
catch (SQLException e)
...
}
public void updateRow(int id, int length, int numbers, int upper,
int lower, int specialChars, double naiveEntropy )
{
PreparedStatement updatePassEntry = null;
String updateString = "update cwlCompatiblePassUnique " +
"set length = ?, numbers = ?, upper = ?, lower = ?, specialChars = ?, ShannonEntropy = ? where id = ?";
try {
this.conn.setAutoCommit(false);
updatePassEntry = this.conn.prepareStatement(updateString);
updatePassEntry.setInt(1, length);
...
updatePassEntry.setInt(7, id);
updatePassEntry.executeUpdate();
this.conn.commit();
}
catch (SQLException e)
...
}
关于可以做些什么的任何想法?
由于
答案 0 :(得分:2)
你在rs.next()循环中调用updateRow()方法;它试图在当前正在while(rs.next())循环内处理的SQL字段(id)上进行SQL更新。这会引起你得到的错误。我建议你写一个方法来拉动rs并将它们存储在java对象向量中作为第一步。退出后此方法将关闭rs。然后编写另一种方法来处理和更新缓存的矢量对象上的数据。 像这样的东西:
private void Vector<DataSet> getDataSet(){
Vector<DataSet> data=new Vector<DataSet>();
String query = "select id,pass from datatable";
try {
this.conn.setAutoCommit(false);
stmt = this.conn.createStatement();
stmt.setFetchSize(Integer.MIN_VALUE);
rs = stmt.executeQuery(query);
while (rs.next()) {
pass = rs.getString(2).trim();
id = rs.getInt(1);
data.addElement(new DataSet(id,pass));
}
}catch(Exception e){
// here close connection and rs
}
}
private void udpateData(Vector<dataSet> data){
//process data and update her
}
static class DataSet{
int id;
String pass;
//constructor here
}
答案 1 :(得分:0)
连接对象不应一次包含多个结果集对象。 创建ResultSet和Statement对象后,每个都必须明确关闭, resultSet.close() 将statement.close()