| Author |
Question on closing ResultSets
|
Chris Cano
Greenhorn
Joined: Mar 14, 2011
Posts: 2
|
|
According to the Javadocs for ResultSet,
A ResultSet object is automatically closed when the Statement object that generated it is closed, re-executed, or used to retrieve the next result from a sequence of multiple results.
Why, then, do I keep seeing examples like this?
Isn't closing the ResultSet superfluous, since the Statement is being closed right afterwards?
|
 |
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 26201
|
|
Chris Cano wrote:Isn't closing the ResultSet superfluous, since the Statement is being closed right afterwards?
Yes. However some drivers don't implement the spec properly so people got in the habit of closing both. I do the same. No harm in it.
|
[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
|
 |
Chris Cano
Greenhorn
Joined: Mar 14, 2011
Posts: 2
|
|
Alright, thanks.
How about the part about when the Statement is re-executed? If I have a PreparedStatement executing a query in a loop (or just any reuse of a PreparedStatement), do I need to close the ResultSet from each execution of the PreparedStatement?
|
 |
Scott Selikoff
Saloon Keeper
Joined: Oct 23, 2005
Posts: 3652
|
|
You should close the result set if you are going to reuse a statement. While not closing it won't kill your application, if the life of the statement is significantly long, you could end up with a lot of unclosed result sets. Keep in mind, garbage collection will not close an object. As Jeanne pointed out, though, you should always close both when you're done with them since you can't predict what a driver is going to do and because its a good practice. Not closing JDBC objects properly can lead to a lot of bugs as an application scales to more and more users.
I wrote an article about closing JDBC objects a few years back you might find of use.
|
My Blog: Down Home Country Coding with Scott Selikoff
|
 |
 |
|
|
subject: Question on closing ResultSets
|
|
|