基于mvc连接数据库的源代码
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;
用户评论