|
数据库是access
<jsp:useBean id="xiaoshou" scope="session" class="canj00.ShelltoBean" />
<%
xiaoshou.getcon();
ResultSet rs;
rs=xiaoshou.stmt.executeQuery("select * from shellc");
while(rs.next())
{
String id2=rs.getString("id");
yorn=request.getParameter(id2);
if(yorn!=null)
{
String up="update shellc set jiaoyi='"+seeyou+"' where id='"+id2+"'";
xiaoshou.stmt.executeUpdate(up);
}
}
%>
这是其中的一些代码
出现的错误是
java.sql.SQLException: ResultSet is closed
问题是:
是不是每次update完就会关闭结果集?
程序要怎么该? |
|