Oracle
 sql >> Database >  >> RDS >> Oracle

java.sql.SQLException:set di risultati esaurito

Ho riscontrato questo errore durante il tentativo di accedere al valore di una colonna dopo l'elaborazione del set di risultati.

if (rs != null) {
  while (rs.next()) {
    count = rs.getInt(1);
  }
  count = rs.getInt(1); //this will throw Exhausted resultset
}

Spero che questo ti aiuterà :)