Will a call to PreparedStatement.executeQuery() always close the ResultSet from the previous executeQuery()?
Created May 4, 2012
Dieter Wimberger A quote from the Java API docs, java.sql.ResultSet:
A ResultSet is automatically closed by the Statement that generated it when
that Statement is closed, re-executed, or is used to retrieve the next
result from a sequence of multiple results.