I want to know if ResultSet can be closed if I didn\'t close it ? I have a ResultSet is closed exception but I am sure I didn\'t close the ResultSet anywhere .
What I do exa
I always close Connections, ResultSets and Statements in finally {} block. In such case I don't have this problem, since this block is always executed (Well, not always, but here it fits). Please refer to this post, I placed skeleton implementation that might be interesting for you.