A query of mine is meant to return exactly one row (as it is a select of a record by an unique id). I am to throw an exception if the result set is empty and another exception if it contains more than 1 row. Iterating throu the result set with while(rs.next()) doesn't look pretty in this case, IMHO. Can I just get the quantity of rows in a result set instantly?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I don't think there is a way to do this in a single method call. You could use the Pls remember to have the finally clause to close all the connection/ds :)
|
||||
|
|
Seems that you don't need to know the number of rows returned, just if there was more than 1. |
|||
|
|
|
Have you tried: java.sql.ResultSet.isBeforeFirst() From javadoc: Retrieves whether the cursor is before the first row in this ResultSet object.
|
||||
|
|