• JSP列表形式显示数据库中的数据 OracleCachedRowSet 实例


    现在数据库中有一张用户表,希望用户在jsp页面中输入用户名和密码以及 用户类型,在servlet中插入数据库后,在另一个jsp页面中把数据库中所有的用户名和类型都以列表的形式列出来    可以用OracleCachedRowSet实现了ResultSet中的所有方法The oracle.jdbc.rowset.OracleCachedRowSet class is the Oracle implementation of CachedRowSet

    servlet代码为:

    import oracle.jdbc.rowset.OracleCachedRowSet;

    PreparedStatement pUpd = con.prepareStatement("insert into myuser(username,password,user_type) values (?,?,?)" );
    pUpd.setString(1,userName);
    pUpd.setString(2,password);
    int ty=Integer.parseInt(type);
    pUpd.setInt(3,ty);
    int numRows = pUpd.executeUpdate();
    out.print("成功插入"+numRows+"行<br>");
    out.print("从数据库中读取您的注册信息为: <br>");
    pUpd = con.prepareStatement("select username,user_type from myuser " );
    rs = pUpd.executeQuery(); 
       OracleCachedRowSet ors = new OracleCachedRowSet();
    //将ResultSet中的数据封装到RowSet中
       ors.populate(rs);
      request.setAttribute("empRS",ors );

      RequestDispatcher rd;
          rd = getServletContext().getRequestDispatcher("/showResult.jsp");
          rd.forward(request,response); 

    显示用户名和类型都以列表的形式的读取数据jsp为:showResult.jsp

         


    <%@ page language="java" import="java.util.*,javax.sql.*,oracle.jdbc.rowset.OracleCachedRowSet" pageEncoding="utf-8"%>

     <body>
      <%
      OracleCachedRowSet empRS =(OracleCachedRowSet)request.getAttribute("empRS");
      
      %>

    <table  cellspacing="0" width=”90%”>
        <tr>  <td>用户名</td> <td>类型</td>  </tr>
    <%
      if (empRS != null) 
      while (empRS.next() ) 
      {
    %>
      <tr>  
        <td><%= empRS.getString("userName")%></td> 
        <td><%= empRS.getString("user_type")%></td>  
      </tr>
    <%
      }// end while
    %>
    </table>
      </body>


  • 相关阅读:
    findall查找 ^$*+?{ }{m,n}[].[.] w s d  D W
    find查找、split分隔、replace替换
    round四舍五入
    pow求一个数的n次幂
    iter创建一个可以被迭代的对象
    notepad++ gmt中文乱码问题
    matlab eps 字体用AI打开乱码的解决
    [转载]Matlab中使用xlswrite函数时出现服务器出现异常的解决方法
    How to determine which grid cells a line segment passes through?
    matlab给定点生成多边形,多边形掩膜处理
  • 原文地址:https://www.cnblogs.com/unflynaomi/p/4476855.html
Copyright © 2020-2023  润新知