我热衷于深入了解 ResultSet 的工作原理。我对 ResultSet 有很多疑问。比如性能方面哪个更好。
while(rs.next())
{
// iterate as well as do call some other functions.
}
or
while(rs.next())
{
// iterate and store the column values in a map
}
// do functions using the map.
因为该表被许多其他并发程序访问。