How to check if resultset has one row or more with JDBC?
|
You didn't ask this one, but you may need it:
Normally, we don't need the row count because we use a WHILE loop to iterate through the result set instead of a FOR loop:
However, in some cases, you might want to window the results, and you need the record count ahead of time to display to the user something like Sample from ResultSet Overview |
||||
|
|
|
My no-brainer suggestion: Fetch the first result row, and then try to fetch the next. If the attempt is successful, you have more than one row. If there is more than one row and you want to process that data, you'll need to either cache the stuff from the first row, or use a scrollable result set so you can seek back to the top before going through the results. You can also ask SQL directly for this information by doing a |
|||
|
|
|
There are many options, and since you don't provide more context the only thing left is to guess. My answers are sorted by complexity and performance ascending order.
|
|||||
|
|
You don't need JDBC for this. The normal idiom is to collect all results in a collection and make use of the collection methods, such as
where the
|
|||||||||
|
|
Get the Row Count using From your code u can create
|
||||
|