How can I find that the ResultSet, that I have got by querying a database, is empty or not?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
Immediately after your execute statement you can have an if statement. For example
|
|||
|
|
|
Do this using
If the result set is empty, the code inside the loop won't execute. |
|||
|
|
|
Definitely this gives good solution,
|
||||
|
|
|
If you use rs.next() you will move the cursor, than you should to move first() why don't check using first() directly?
|
||||
|
|
Calculates the size of the java.sql.ResultSet:
(Source) |
|||||
|
if (rs == null || !rs.first()) {
//empty
} else {
//not empty
}
Note that after this method call, if the resultset is not empty, it is at the beginning. |
|||