I'm executing a few SELECTs in a row and I'm wondering how I should handle the PreparedStatements.
Example code:
//Connection conn is already declared
PreparedStatement pstmt = null;
ResultSet rset = null;
try {
String sql = "SELECT ...";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, someVar);
rset = pstmt.executeQuery();
// Use ResultSet
// A different query
sql = "SELECT ...";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, someVar);
rset = pstmt.executeQuery();
// Use ResultSet
} catch (SQLException e) {
// Handle
} finally {
if (rset != null)
rset.close();
if (pstmt != null)
pstmt.close();
if (conn != null)
conn.close();
}
Now the question is, would it be better to close the PreparedStatements after each usage/use different statements or would it make absolutely no difference?
I've found some information about reusing a PreparedStatement that always has the same query but I'm not sure about using different queries.
JOINclause? I'd invest time in learning it so that you can end up with a single SQL query. Or if it are two completely standalone queries, I'd execute it in separate method bodies. – BalusC Aug 30 '11 at 15:22JOINs. They are 2 unrelatedSELECTs used to generate a report. – Vache Aug 30 '11 at 15:23JOINthen. – BalusC Aug 30 '11 at 15:24