| Author |
ResultSet when no rows found
|
Martin Lira
Ranch Hand
Joined: May 26, 2004
Posts: 97
|
|
Hi, I have some jdbc code Is the ResultSet null when the result is "no rows found", will rs.close() give me an error. Thanks, Martin
|
 |
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 26496
|
|
Martin, The resultset is never null. So rs.next() will return false and rs.close() will close the empty resultset.
|
[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
|
 |
 |
|
|
subject: ResultSet when no rows found
|
|
|