結果セットの処理後に列の値にアクセスしようとしたときに、このエラーが発生しました。
if (rs != null) {
while (rs.next()) {
count = rs.getInt(1);
}
count = rs.getInt(1); //this will throw Exhausted resultset
}
これがお役に立てば幸いです:)
結果セットの処理後に列の値にアクセスしようとしたときに、このエラーが発生しました。
if (rs != null) {
while (rs.next()) {
count = rs.getInt(1);
}
count = rs.getInt(1); //this will throw Exhausted resultset
}
これがお役に立てば幸いです:)