「Java」try-with-resources文を使うサンプル
サンプルコード
String strSQL ="INSERT INTO TEST_TBL xxxx"; try (PreparedStatement ps = conn.preparedStatement(strSQL)) { // some code ret =ps.executeUpdate(); } catch (Exception e) { e.printStackTrace(); throw e; }
Coding Changes the World
サンプルコード
String strSQL ="INSERT INTO TEST_TBL xxxx"; try (PreparedStatement ps = conn.preparedStatement(strSQL)) { // some code ret =ps.executeUpdate(); } catch (Exception e) { e.printStackTrace(); throw e; }