码迷,mamicode.com
首页 > 其他好文 > 详细

conn,stmt,rset 的关闭(规范)

时间:2016-08-06 08:18:17      阅读:356      评论:0      收藏:0      [点我收藏+]

标签:

 

     Connection conn = null;
        Statement stmt = null;
        ResultSet rset = null;

        try {
            conn = dataSource.getConnection();
            stmt = conn.createStatement();
            rset = stmt.executeQuery("select 1 from dual");
        } catch (SQLException e) {
            e.printStackTrace();
        } finally {
             try { if (rset != null) rset.close(); } catch(Exception e) { }
             try { if (stmt != null) stmt.close(); } catch(Exception e) { }
             try { if (conn != null) conn.close(); } catch(Exception e) { }
        }

 

conn,stmt,rset 的关闭(规范)

标签:

原文地址:http://www.cnblogs.com/zno2/p/4566439.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!