【博客搬家】依次关闭ResultSet, Statement, Connection

在JVM错误日志SystemErr.log中偶尔报下面异常信息。
4:17:27:066 GMT-08:00] 5790ff71 SystemErr R SystemBllBean.getProjTypeThrees() error!Exhausted Resultset[2/20/04 14:19:51:145 GMT-08:00] 2bafbf43 SystemErr R Method executeQuery throws Exception!DSRA9110E: Statement is closed.[2/20/04 14:19:51:146 GMT-08:00] 2bafbf43 SystemErr R ProjectApplySrv.getProjApplys() error !DSRA9110E: Statement is closed.[2/20/04 14:20:47:526 GMT-08:00] 26a17f44 SystemErr R [2/20/04 14:35:33:543 GMT-08:00] 708a7f71 SystemErr R Exhausted Resultset[2/20/04 15:29:49:930 GMT-08:00] 78a83f4c SystemErr R SystemBllBean.getProjTypeFours() error!Exhausted Resultset[2/20/04 15:55:43:669 GMT-08:00] 5790ff71 SystemErr R Exhausted Resultset
      根据Oracle官方网站上FAQ提供的信息,Exhausted Resultset一般发生在用Oracle JDBC Thin Driver连接Oracle数据库的环境中,其主要原因是由于Statement/PreparedStatement提前关闭了,之后又去调用 ResultSet。数据库连接的一般使用方法是:生成或得到Connectionà生成Statement/PrepareStatement -> executeQuery()得到ResultSet。 用完之后在finally语句中 依次关闭ResultSet, Statement, Connection。 程序员一般都知道这个顺序,那究竟是怎么回事呢? 看一下应用访问数据库的代码吧。 这个应用程序有一个专门操作数据库的JavaBean,例如DBBean其中相关的方法如下: //得到ResultSet的方法public ResultSet executeQuery(String sql) throws SQLException { ResultSet rs = null; try { this.conn = getConnection(); PreparedStatement pstmt = this.conn.prepareStatement(sql); rs = pstmt.executeQuery(); return rs; } catch (SQLException e) { System.err.println(" Method executeQuery throws Exception!" + e.getMessage()); throw e; }}//关闭数据库连接的方法public void close() throws SQLException { try { if (this.conn != null && !conn.isClosed()) { this.conn.close(); } } catch (SQLException e) { System.err.println(" Method close throws Exception!" + e.getMessage()); throw e; }} 其它程序代码里面通过下面的方式来操作数据库。 strSQL = …;DBBean MyDBBean = new DBBean(); rs = MyDBBean .executeQuery(strSQL);if(rs != null){ while ( rs.next()) { … }catch () {}finally { try { if(rs != null) {rs.close();rs = null;} MyDBBean.close(); } catch (SQLException re) { …} 通过分析这几段代码,我们可以发现pstmt没有显式地关闭。只是因为pstmt是executeQuery(String sql)方法的局部变量,因此在其他类调用的时候没有办法直接显示关闭。而实际上rs = MyDBBean .executeQuery(strSQL);中的方法返回时pstmt变量已经失效,只是JAVA语言并不一定马上回收它。因此当得到一个比较大的结果集的时候,上述Exhausted Resultset问题就容易出现。解决的方法是修改代码结构,根据实际情况用完之后及时关闭相应的资源。  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值