回 帖 发 新 帖 刷新版面

主题:怎样解决无效的游标状态?

<%
   Statement  stat=conn.createStatement();
   ResultSet rs=null;
   String errorcode=new String();
   String content=new String();
   String name=new String();
   String gettime=new String();
   String id=request.getParameter("id");
   String strSql="select * from Liuyan where serial_no="+id;
   try{
      rs=stat.executeQuery(strSql);
      rs.next();
      content=rs.getString("content");
      name=rs.getString("name");
      gettime=rs.getString("guest_time");
      
    }catch(Exception e){
      errorcode=e.toString();
      out.println("<BR>DEBUG:"+errorcode);
    }finally{
         rs.close();
         stat.close();
         conn.close();
   }
   %>
为何总提示:DEBUG:java.sql.SQLException: [Microsoft][ODBC 驱动程序管理器] 无效的游标状态?如何解决?

回复列表 (共1个回复)

沙发


问题已经解决了~~`[em12]

我来回复

您尚未登录,请登录后再回复。点此登录或注册