免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1849 | 回复: 2
打印 上一主题 下一主题

jsp中如何释放rs [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-12-10 17:13 |只看该作者 |倒序浏览
<%
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance(); //载入驱动程序类别
Connection conn = DriverManager.getConnection("jdbc:microsoft:sqlserver://IP:1433;DatabaseName=test","jing","shujuku");; //建立数据库链接
//建立Statement对象
Statement stmt = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
%>这是连接数据库的文件,下面要两次用到rs,我第一次用完了之后怎么释放呢?
然后再怎么重新定义呢?
<%String sql1="Select * from product where pro_name='news' and img is not null";
   ResultSet rs1 = stmt.executeQuery(sql1);
   while (rs1.next()){
   String id=rs1.getString("id");
   String img=rs1.getString("img");
   String title=rs1.getString("title");
%>
<table width="100%" border="0" cellpadding="0" cellspacing="3">
  <tr>
    <td><img src="admin/img/<%=img%>" width="158" height="126"></td>
  </tr>
  <tr>
    <td height="41" class="text03"><a href="news_more.jsp?id=<%=id%>"class="2"><%=title%></a></td>
   </tr>
</table>
<%}
  rs1.close();
%>
  </div></td>
   </tr>
   </table></td>
  </tr>
</table></td>
<td width="410" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="4">
<tr>
  <td><table width="100%" border="0" cellspacing="8" cellpadding="0">
    <%String sql2="Select * from product where pro_name='news' order by id desc";
     int i;
     ResultSet rs2 = stmt.executeQuery(sql2);
     i=0;
     while((i<7) && (rs2.next())){
    String id=rs2.getString("id");
    String title=rs2.getString("title");
    String time=rs2.getString("pub_date");
    time=time.substring(0,10);
    %>
  <tr>
<td width="5%"><div align="center"><img src="image/20.jpg" width="6" height="9"></div></td>
  <td width="70%"><a href="news_more.jsp?id=<%=id%>" class="2"><%=title%></a></td>
<td width="25%" style="font-size=12px">[<%=time%>]</td>
  </tr>
<%i=i+1;                       
}
  rs2.close();
%>
上面是我用到两次rs。第二次,我想重新定义,请问怎么用,我是截取的一段代码,不太规范,大家请谅。

论坛徽章:
0
2 [报告]
发表于 2005-12-10 17:26 |只看该作者

  1. try{rs.close();}catch(Exception e){}
  2. rs = null;
复制代码


lz 多注意意外没有运行到,参考JSP中使用Exception的例子或改变编写方式,假如是倒数据或临时运行的,还

可以原谅,但正式运行中,不要使用这种在JSP中直接操作的方式

论坛徽章:
0
3 [报告]
发表于 2005-12-11 14:31 |只看该作者
我只是做了一个测试的页面,真正的数据库操作我都封装在bean中。我只是想这种情况怎么才能把rs释放掉,第二次用到的时候再次使用rs。谢谢。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP