1. 首页
  2. 编程语言
  3. Web开发
  4. 基于mvc连接数据库的源代码

基于mvc连接数据库的源代码

上传者: 2021-05-09 22:50:41上传 DOC文件 38KB 热度 8次
ShowRecordByPage.java package user.yourbean; import com.sun.rowset.*; public class ShowRecordByPage{ CachedRowSetImpl rowSet=null; //存储表中全部记录的行集对象 int pageSize=10; //每页显示的记录数 int pageAllCount=0; //分页后的总页数 int showPage=1 ; //当前显示页 StringBuffer presentPageResult; //显示当前页内容 String databaseName=""; //数据库名称 String tableName=""; //表的名字 StringBuffer formTitle=null; //表头 public void setRowSet(CachedRowSetImpl set){ rowSet=set; } public CachedRowSetImpl getRowSet(){ return rowSet; } public void setPageSize(int size){ pageSize=size; } public int getPageSize(){ return pageSize; } public int getPageAllCount(){ return pageAllCount; } public void setPageAllCount(int n){ pageAllCount=n;
用户评论