vote up 2 vote down star

Shouldn't this be a pretty straightforward operation? However, I there is no size() or length() method.

flag

2 Answers

vote up 9 vote down check

ResultSet.last() followed by ResultSet.getRow() will give you the row count, but it may not be a good idea as it can mean reading the entire table over the network and throwing away the data. Do a SELECT COUNT(*) FROM ... query instead.

link|flag
last() and getRow() aren't static methods in the ResultSet class. – JeeBee Oct 10 '08 at 16:21
For brevity's sake I always reference methods in this fashion when writing about them to others, regardless of whether they are static or not. Actually creating an instance of the object and calling the method is implied. – laz Oct 10 '08 at 18:23
vote up 2 vote down

ResultSet rs = ps.executeQuery();
int rowcount = 0;
if (rs.last()) {
  rowcount = rs.getRow();
  rs.beforeFirst(); // not rs.first() because the rs.next() below will move on, missing the first element
}
while (rs.next()) {
  // do your standard per row stuff
}

link|flag
Inside the if(rs.last()) code block, wouldn't the correct method be rs.beforeFirst() instead of rs.first()? This way, you are not skipping the first record in your result set for processing in the while loop. – KG Jan 26 at 17:04
KG - Indeed that looks right at a brief look at the code! – JeeBee Jan 27 at 12:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.