重写ResultSet实现分页功能(最好的分页技术)(转)

1.首先定义一个接口Pageable 继承ResultSet这个类

并在接口中定义一些自己的方法,具体方法如下:

package com.page;

import java.sql.ResultSet;

public interface Pageable extends ResultSet {
 
 
 /**返回总页数
 */
 int getPageCount();
 /**返回当前页的记录条数
 */
 int getPageRowsCount();
 /**返回分页大小
 */
 int getPageSize();
 /**转到指定页
 */
 void gotoPage(int page) ;
 /**设置分页大小
 */
 void setPageSize(int pageSize);
 /**返回总记录行数
 */
 int getRowsCount();
 /**
 * 转到当前页的第一条记录
 * @exception java.sql.SQLException 异常说明。
 */
 void pageFirst() throws java.sql.SQLException;
 /**
 * 转到当前页的最后一条记录
 * @exception java.sql.SQLException 异常说明。
 */
 void pageLast() throws java.sql.SQLException;
 /**返回当前页号
 */
 int getCurPage();

}

2.然后定义一个类PageableResultSet 实现这个接口,覆盖ResultSet的所有方法.并实现接口Pageable 中自定义的方法,具体实现方式如下:

package com.page;

import java.io.InputStream;
import java.io.Reader;
import java.math.BigDecimal;
import java.net.URL;
import java.sql.Array;
import java.sql.Blob;
import java.sql.Clob;
import java.sql.Date;
import java.sql.Ref;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.SQLWarning;
import java.sql.Statement;
import java.sql.Time;
import java.sql.Timestamp;
import java.util.Calendar;
import java.util.Map;

public class PageableResultSet implements Pageable {

protected java.sql.ResultSet rs=null;
 protected int rowsCount;
 protected int pageSize;
 protected int curPage;
 protected String command = "";

public PageableResultSet(java.sql.ResultSet rs) throws java.sql.SQLException {
  if(rs==null) throw new SQLException("given ResultSet is NULL","user");
  rs.last();
  rowsCount=rs.getRow();
  System.out.println(rowsCount);
  rs.beforeFirst();
  this.rs=rs;

}
 public int getCurPage() {
  return curPage;
 }

public int getPageCount() {
  if(rowsCount==0) return 0;
  if(pageSize==0) return 1;
//  calculate PageCount
  double tmpD=(double)rowsCount/pageSize;
  int tmpI=(int)tmpD;
  if(tmpD>tmpI) tmpI++;
  return tmpI;
 }

public int getPageRowsCount() {
  if(pageSize==0) return rowsCount;
  if(getRowsCount()==0) return 0;
  if(curPage!=getPageCount()) return pageSize;
  return rowsCount-(getPageCount()-1)*pageSize;
 }

public int getPageSize() {
  return pageSize;
 }

public int getRowsCount() {
  return rowsCount;
 }

public void gotoPage(int page) {
  if (rs == null)
   return;
   if (page < 1)
   page = 1;
   if (page > getPageCount())
   page = getPageCount();
   int row = (page - 1) * pageSize + 1;
   try {
   rs.absolute(row);
   curPage = page;
   }
   catch (java.sql.SQLException e) {
   }

}

public void pageFirst() throws SQLException {
  int row=(curPage-1)*pageSize+1;
  rs.absolute(row);

}

public void pageLast() throws SQLException {
  int row=(curPage-1)*pageSize+getPageRowsCount();
  rs.absolute(row);

}

public void setPageSize(int pageSize) {
  if(pageSize>=0){
   this.pageSize=pageSize;
   curPage=1;
   }

}

public boolean next() throws SQLException {
  return rs.next();
 }

public boolean absolute(int row) throws SQLException {
  return rs.absolute(row);
 }

public void afterLast() throws SQLException {
  rs.afterLast();
  
 }

public void beforeFirst() throws SQLException {
  rs.beforeFirst();
  
 }

public void cancelRowUpdates() throws SQLException {
  rs.cancelRowUpdates();
 }

public void clearWarnings() throws SQLException {
  rs.clearWarnings();
  
 }

public void close() throws SQLException {
  rs.close();
  
 }

public void deleteRow() throws SQLException {
  rs.deleteRow();
  
 }

public int findColumn(String columnName) throws SQLException {
  return rs.findColumn(columnName);
 }

public boolean first() throws SQLException {
  return rs.first();
 }

public Array getArray(int i) throws SQLException {
  return rs.getArray(i);
 }

public Array getArray(String colName) throws SQLException {
  return rs.getArray(colName);
 }

public InputStream getAsciiStream(int columnIndex) throws SQLException {
  return rs.getAsciiStream(columnIndex);
 }

public InputStream getAsciiStream(String columnName) throws SQLException {
  return rs.getAsciiStream(columnName);
 }

public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
  return rs.getBigDecimal(columnIndex);
 }

public BigDecimal getBigDecimal(String columnName) throws SQLException {
  return rs.getBigDecimal(columnName);
 }

public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException {
  return rs.getBigDecimal(columnIndex, scale);
 }

public BigDecimal getBigDecimal(String columnName, int scale) throws SQLException {
  return rs.getBigDecimal(columnName, scale);
 }

public InputStream getBinaryStream(int columnIndex) throws SQLException {
  return rs.getBinaryStream(columnIndex);
 }

public InputStream getBinaryStream(String columnName) throws SQLException {
  return rs.getBinaryStream(columnName);
 }

public Blob getBlob(int i) throws SQLException {
  return rs.getBlob(i);
 }

public Blob getBlob(String colName) throws SQLException {
  return rs.getBlob(colName);
 }

public boolean getBoolean(int columnIndex) throws SQLException {
  return rs.getBoolean(columnIndex);
 }

public boolean getBoolean(String columnName) throws SQLException {
  return rs.getBoolean(columnName);
 }

public byte getByte(int columnIndex) throws SQLException {
  return rs.getByte(columnIndex);
 }

public byte getByte(String columnName) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getByte(columnName);
 }

public byte[] getBytes(int columnIndex) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getBytes(columnIndex);
 }

public byte[] getBytes(String columnName) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getBytes(columnName);
 }

public Reader getCharacterStream(int columnIndex) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getCharacterStream(columnIndex);
 }

public Reader getCharacterStream(String columnName) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getCharacterStream(columnName);
 }

public Clob getClob(int i) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getClob(i);
 }

public Clob getClob(String colName) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getClob(colName);
 }

public int getConcurrency() throws SQLException {
  // TODO 自动生成方法存根
  return rs.getConcurrency();
 }

public String getCursorName() throws SQLException {
  // TODO 自动生成方法存根
  return rs.getCursorName();
 }

public Date getDate(int columnIndex) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getDate(columnIndex);
 }

public Date getDate(String columnName) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getDate(columnName);
 }

public Date getDate(int columnIndex, Calendar cal) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getDate(columnIndex, cal);
 }

public Date getDate(String columnName, Calendar cal) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getDate(columnName, cal);
 }

public double getDouble(int columnIndex) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getDouble(columnIndex);
 }

public double getDouble(String columnName) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getDouble(columnName);
 }

public int getFetchDirection() throws SQLException {
  // TODO 自动生成方法存根
  return rs.getFetchDirection();
 }

public int getFetchSize() throws SQLException {
  // TODO 自动生成方法存根
  return rs.getFetchSize();
 }

public float getFloat(int columnIndex) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getFloat(columnIndex);
 }

public float getFloat(String columnName) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getFloat(columnName);
 }

public int getInt(int columnIndex) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getInt(columnIndex);
 }

public int getInt(String columnName) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getInt(columnName);
 }

public long getLong(int columnIndex) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getLong(columnIndex);
 }

public long getLong(String columnName) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getLong(columnName);
 }

public ResultSetMetaData getMetaData() throws SQLException {
  // TODO 自动生成方法存根
  return rs.getMetaData();
 }

public Object getObject(int columnIndex) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getObject(columnIndex);
 }

public Object getObject(String columnName) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getObject(columnName);
 }

public Object getObject(int i, Map<String, Class<?>> map) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getObject(i, map);
 }

public Object getObject(String colName, Map<String, Class<?>> map) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getObject(colName, map);
 }

public Ref getRef(int i) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getRef(i);
 }

public Ref getRef(String colName) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getRef(colName);
 }

public int getRow() throws SQLException {
  // TODO 自动生成方法存根
  return rs.getRow();
 }

public short getShort(int columnIndex) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getShort(columnIndex);
 }

public short getShort(String columnName) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getShort(columnName);
 }

public Statement getStatement() throws SQLException {
  // TODO 自动生成方法存根
  return rs.getStatement();
 }

public String getString(int columnIndex) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getString(columnIndex);
 }

public String getString(String columnName) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getString(columnName);
 }

public Time getTime(int columnIndex) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getTime(columnIndex);
 }

public Time getTime(String columnName) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getTime(columnName);
 }

public Time getTime(int columnIndex, Calendar cal) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getTime(columnIndex, cal);
 }

public Time getTime(String columnName, Calendar cal) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getTime(columnName, cal);
 }

public Timestamp getTimestamp(int columnIndex) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getTimestamp(columnIndex);
 }

public Timestamp getTimestamp(String columnName) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getTimestamp(columnName);
 }

public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getTimestamp(columnIndex, cal);
 }

public Timestamp getTimestamp(String columnName, Calendar cal) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getTimestamp(columnName, cal);
 }

public int getType() throws SQLException {
  // TODO 自动生成方法存根
  return rs.getType();
 }

public URL getURL(int columnIndex) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getURL(columnIndex);
 }

public URL getURL(String columnName) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getURL(columnName);
 }

public InputStream getUnicodeStream(int columnIndex) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getUnicodeStream(columnIndex);
 }

public InputStream getUnicodeStream(String columnName) throws SQLException {
  // TODO 自动生成方法存根
  return rs.getUnicodeStream(columnName);
 }

public SQLWarning getWarnings() throws SQLException {
  // TODO 自动生成方法存根
  return rs.getWarnings();
 }

public void insertRow() throws SQLException {
  // TODO 自动生成方法存根
  rs.insertRow();
  
 }

public boolean isAfterLast() throws SQLException {
  // TODO 自动生成方法存根
  return rs.isAfterLast();
 }

public boolean isBeforeFirst() throws SQLException {
  // TODO 自动生成方法存根
  return rs.isBeforeFirst();
 }

public boolean isFirst() throws SQLException {
  // TODO 自动生成方法存根
  return rs.isFirst();
 }

public boolean isLast() throws SQLException {
  // TODO 自动生成方法存根
  return rs.isLast();
 }

public boolean last() throws SQLException {
  // TODO 自动生成方法存根
  return rs.last();
 }

public void moveToCurrentRow() throws SQLException {
  // TODO 自动生成方法存根
  rs.moveToCurrentRow();
 }

public void moveToInsertRow() throws SQLException {
  // TODO 自动生成方法存根
  rs.moveToInsertRow();
 }

public boolean previous() throws SQLException {
  // TODO 自动生成方法存根
  return rs.previous();
 }

public void refreshRow() throws SQLException {
  // TODO 自动生成方法存根
  rs.refreshRow();
 }

public boolean relative(int rows) throws SQLException {
  // TODO 自动生成方法存根
  return rs.relative(rows);
 }

public boolean rowDeleted() throws SQLException {
  // TODO 自动生成方法存根
  return rs.rowDeleted();
 }

public boolean rowInserted() throws SQLException {
  // TODO 自动生成方法存根
  return rs.rowInserted();
 }

public boolean rowUpdated() throws SQLException {
  // TODO 自动生成方法存根
  return rs.rowUpdated();
 }

public void setFetchDirection(int direction) throws SQLException {
  // TODO 自动生成方法存根
  rs.setFetchDirection(direction);
 }

public void setFetchSize(int rows) throws SQLException {
  // TODO 自动生成方法存根
  rs.setFetchSize(rows);
 }

public void updateArray(int columnIndex, Array x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateArray(columnIndex, x);
 }

public void updateArray(String columnName, Array x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateArray(columnName, x);
 }

public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateAsciiStream(columnIndex, x, length);
 }

public void updateAsciiStream(String columnName, InputStream x, int length) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateAsciiStream(columnName, x, length);
 }

public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateBigDecimal(columnIndex, x);
 }

public void updateBigDecimal(String columnName, BigDecimal x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateBigDecimal(columnName, x);
 }

public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateBinaryStream(columnIndex, x, length);
 }

public void updateBinaryStream(String columnName, InputStream x, int length) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateBinaryStream(columnName, x, length);
 }

public void updateBlob(int columnIndex, Blob x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateBlob(columnIndex, x);
 }

public void updateBlob(String columnName, Blob x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateBlob(columnName, x);
 }

public void updateBoolean(int columnIndex, boolean x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateBoolean(columnIndex, x);
 }

public void updateBoolean(String columnName, boolean x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateBoolean(columnName, x);
 }

public void updateByte(int columnIndex, byte x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateByte(columnIndex, x);
 }

public void updateByte(String columnName, byte x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateByte(columnName, x);
 }

public void updateBytes(int columnIndex, byte[] x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateBytes(columnIndex, x);
 }

public void updateBytes(String columnName, byte[] x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateBytes(columnName, x);
 }

public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateCharacterStream(columnIndex, x, length);
 }

public void updateCharacterStream(String columnName, Reader reader, int length) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateCharacterStream(columnName, reader, length);
 }

public void updateClob(int columnIndex, Clob x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateClob(columnIndex, x); 
 }

public void updateClob(String columnName, Clob x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateClob(columnName, x);  
 }

public void updateDate(int columnIndex, Date x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateDate(columnIndex, x);
 }

public void updateDate(String columnName, Date x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateDate(columnName, x);
 }

public void updateDouble(int columnIndex, double x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateDouble(columnIndex, x); 
 }

public void updateDouble(String columnName, double x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateDouble(columnName, x);
 }

public void updateFloat(int columnIndex, float x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateFloat(columnIndex, x);
 }

public void updateFloat(String columnName, float x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateFloat(columnName, x);
 }

public void updateInt(int columnIndex, int x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateInt(columnIndex, x);
 }

public void updateInt(String columnName, int x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateInt(columnName, x);
 }

public void updateLong(int columnIndex, long x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateLong(columnIndex, x);
 }

public void updateLong(String columnName, long x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateLong(columnName, x);
 }

public void updateNull(int columnIndex) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateNull(columnIndex);
 }

public void updateNull(String columnName) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateNull(columnName);
 }

public void updateObject(int columnIndex, Object x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateObject(columnIndex, x);
 }

public void updateObject(String columnName, Object x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateObject(columnName, x);
 }

public void updateObject(int columnIndex, Object x, int scale) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateObject(columnIndex, x, scale);
 }

public void updateObject(String columnName, Object x, int scale) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateObject(columnName, x, scale);
 }

public void updateRef(int columnIndex, Ref x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateRef(columnIndex, x);
 }

public void updateRef(String columnName, Ref x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateRef(columnName, x);
 }

public void updateRow() throws SQLException {
  // TODO 自动生成方法存根
  rs.updateRow();
 }

public void updateShort(int columnIndex, short x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateShort(columnIndex, x);
 }

public void updateShort(String columnName, short x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateShort(columnName, x);
 }

public void updateString(int columnIndex, String x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateString(columnIndex, x);
 }

public void updateString(String columnName, String x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateString(columnName, x);
 }

public void updateTime(int columnIndex, Time x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateTime(columnIndex, x);
 }

public void updateTime(String columnName, Time x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateTime(columnName, x);
 }

public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateTimestamp(columnIndex, x);
 }

public void updateTimestamp(String columnName, Timestamp x) throws SQLException {
  // TODO 自动生成方法存根
  rs.updateTimestamp(columnName, x);
 }

public boolean wasNull() throws SQLException {
  // TODO 自动生成方法存根
  return rs.wasNull();
 }

}

3.如何运用

获得ResultSet的时候:

pstm=con.prepareStatement(sql, ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);//这里的属性一定要记得修改

Pageable rs=new PageableResultSet(pstm.executeQuery());//得到ResultSet

4.设置RS

rs.setPageSize(pageSize);//设置每页显示数目
   rs.gotoPage(page);//设置当前选择第几页
   for (int i = 0; i < rs.getPageRowsCount(); i++) {
    /...进行取值.../
    rs.next();//不要忘记next()
   }

http://blog.csdn.net/yangxin114/article/details/1668320

时间: 2024-10-01 10:03:06

重写ResultSet实现分页功能(最好的分页技术)(转)的相关文章

hibernate和struts2实现分页功能

1.DAO层接口的设计,定义一个PersonDAO接口,里面声明了两个方法: public interface PersonDAO { public List<Person> queryByPage(String hql, int offset, int pageSize); public int getAllRowCount(String hql); } 2.DAO层接口的实现类PersonDAOImpl类,将其两个方法实现出来: public class PersonDAOImpl imp

JDBC使用数据库来完成分页功能

本篇讲诉如何在页面中通过操作数据库来完成数据显示的分页功能.当一个操作数据库进行查询的语句返回的结果集内容如果过多,那么内存极有可能溢出,所以在大数据的情况下分页是必须的.当然分页能通过很多种方式来实现,而这里我们采用的是操作数据库的方式,而且在这种方式中,最重要的是带限制条件的查询SQL语句: select name from user limit m,n 其中m与n为数字.n代表需要获取多少行的数据项,而m代表从哪开始(以0为起始),例如我们想从user表中先获取前五行数据项(1-5)的na

分页功能的实现——Jdbc &amp;&amp; JSP

@目录 什么是分页 ? 两个子模块功能的问题分析 和 解决方案 有条件查和无条件查询的影响 和 解决方案 项目案例: mysql + commons-dbutils+itcast-tools+BaseServlet + 分页+JSP+JSTL+EL+MVC模式 什么是分页? 如上所示,就是分页  ,不用多说了 子模块功能的问题分析 和 解决方案 @总功能分析  常规JDBC中,点击查询或输入条件查询,在页面中可显示查询出的所有记录,有多少记录就显示多少.在这种项目的基础上增加分页功能 . @分页

简单的beego分页功能代码

一个简单的beego分页小插件(源代码在最下面): 支持条件查询 支持参数保留 支持自定义css样式 支持表/视图 支持参数自定义 默认为pno 支持定义生成链接的个数 使用方式: 1)action中,引入包,然后如下使用: /** * 日志列表 */ func (this *LogController) List() { pno, _ := this.GetInt("pno") //获取当前请求页 var tlog []m.Tb_log var conditions string =

MyBatis精通之路之分页功能的实现

MyBatis精通之路之分页功能的实现(数组分页.sql分页.拦截器,RowBounds分页) 原创 2017年04月27日 21:34:48 标签: mybatis / java / j2ee / mysql / 分页 4162 前言:学习hibernate & mybatis等持久层框架的时候,不外乎对数据库的增删改查操作.而使用最多的当是数据库的查找操作, 而当数据库数据过多时,符合查找条件的数据可能也会是很庞大的数据.往往在这个时候,我们都不会希望一次性的将所有的数据一起性读取出来,并且

第83节:Java中的学生管理系统分页功能

分页功能一般可以做成两种,一种是物理分页,另一种是逻辑分页.这两种功能是有各自的特点的,物理分页是查询的时候,对数据库进行访问,只是查一页数据就进行返回,其特点是对内存中数据量存储不大,只是缺点就是要对数据库不断的进行访问:而对逻辑分页来说,就有所不同,它是一下子就把所有的数据全部查询出来,然后放入到内存中,访问速度快,缺点就是对内存空间不足,数据量过大. select * from stu limit 5; // offset 偏移前面的多少条,offset 1 跳过前面的一条 select

Yii2.0实用功能技巧解密之——分页功能

Yii中的分页功能主要由yii\web: Linkable接口.yii\widgets: LinkPager类和yii\data: Pagination类三个组成. yii\data: Pagination 主要功能是对分页中的参数进行设置,如当前页.每页大小.总页数,总记录数等. yii\widgets: LinkPager 主要是根据yii\data: Pagination类所提供的参数生成前台页面的分页html代码. 使用:先在action里面生成分页对象,然后在前台的LinkPager中

网页分页功能的实现

最近在学习JavaWeb的时候,用到了分页功能,现在进行一个记录,以备不时之需 第一步:先完成分页Bean的编写. 就是对当前页数,每页显示的记录数,总记录数,总页数,分页显示的信息进行封装.作为通用的分页功能的实现,这里用到了泛型 import java.util.List; /** * 分页封装 * */ public class PageBean<T> { private int currPage;//当前页数 private int pageSize;//每页显示记录数 private

网站前端_JavaScript-项目经验.纯JavaScript实现客户端的分页功能?

项目简介: 说明: 此项目属于医院电子病例系统,由于历史原因,整个系统后台基于Java开发,前端使用Html+CSS+原生JavaScript,项目功能模块要求必须纯JS实现,而此次的任务是为住院病例页面编写一个客户端分页功能. 实现思路: 1. 基于客户端分页的前提是数据已经加载完毕,所以此功能模块必须等待数据加载完毕后再加载 2. 基于客户端分页的首页只需要显示24个患者信息即可 3. 上一页/当前页/下一页功能类似,基于当前页面传递同样的参数(页码, 限制患者数),所以自然而然想到了递归,