Tagged Questions
9
votes
8answers
15k views
Where to close java PreparedStatements and ResultSets?
Consider the code:
PreparedStatement ps = null;
ResultSet rs = null;
try {
ps = conn.createStatement(myQueryString);
rs = ps.executeQuery();
// process the results...
} catch ...