我想從一個特定的表計數在我的Derby數據庫,但是當我運行的代碼我一直在當前光標所在位置越來越無效操作有一個結果工作
public int getNumUsers(){
ResultSet rs = null;
int size = -1;
try {
stmt = conn.createStatement();
rs = stmt.executeQuery("select count(*) from USERS");
while(rs.next()){
size = rs.getInt("COUNT");
}
stmt.close();
} catch (SQLException sqe) {
sqe.printStackTrace();
}
return size;
}
或者chnge你行'rs.getInt(1)'。 –