Dikatakan sebagai kebiasaan yang baik untuk menutup semua sumber daya JDBC setelah penggunaan. Tetapi jika saya memiliki kode berikut, apakah perlu untuk menutup Resultset dan Pernyataan?
Connection conn = null;
PreparedStatement stmt = null;
ResultSet rs = null;
try {
conn = // Retrieve connection
stmt = conn.prepareStatement(// Some SQL);
rs = stmt.executeQuery();
} catch(Exception e) {
// Error Handling
} finally {
try { if (rs != null) rs.close(); } catch (Exception e) {};
try { if (stmt != null) stmt.close(); } catch (Exception e) {};
try { if (conn != null) conn.close(); } catch (Exception e) {};
}
Pertanyaannya adalah apakah penutupan koneksi berfungsi atau apakah ada sumber daya yang digunakan.