重写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-11-02 15:15:11

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

php如何实现分页功能

上星期工作中,遇到要处理一段分页的代码!以前是写的很熟练的,可能是懒散的太久了!感觉忘的差不多了. 有的知识就是太久不用也会忘记的很快啊!所以经常复习一下以前的知识也是很重要的.所以特地整理出一下分页代码! 效果如上图:在发表框点一下弹出一个框,首先判断用户是否登录,没有登录就弹出登录框,已登录就弹出输入框,输入留言内容,姓名和手机号. 当你输入好内容后会在下面显示你的留言内容,前三个为用户最新的留言排序,从第四个起按点赞的数量进行排序. <!--视图层--> <?php $pageIn

angularjs-Angularjs如何实现分页功能

问题描述 Angularjs如何实现分页功能 现在做了个表格,有9条记录,想通过angularjs来实现分页功能,能选择每个页面所展示的条数,比如选择3条,就每个页面3条记录,有三页,选择1条,每个页面有1条,一共9页这种功能 解决方案 http://www.ddhigh.com/2014/09/angularjs%E5%88%86%E9%A1%B5%E6%95%99%E7%A8%8B/ 解决方案二: http://download.csdn.net/detail/rx_lj/7726213 解

Angularjs 实现分页功能及示例代码_AngularJS

基于Angularjs实现分页 前言        学习任何一门语言前肯定是有业务需求来驱动你去学习它,当然ng也不例外,在学习ng前我第一个想做的demo就是基于ng实现分页,除去基本的计算思路外就是使用指令封装成一个插件,在需要分页的列表页面内直接引用. 插件       在封装分页插件时我实现了几种方式总体都比较零散,最后找到了一个朋友(http://www.miaoyueyue.com/archives/813.html)封装的插件,觉还不错,读了下他的源码就直接在项目中使用了. 原理和

php实现分页功能的3种方法第1/3页_php技巧

直接上代码,希望大家仔细阅读. 方法一:讲sql查询进行分页进行,需要调用几个函数,具体见脚本:1.pager.class.php <?php class pager { public $sql; //SQL查询语句 public $datanum; //查询所有的数据总记录数 public $page_size; //每页显示记录的条数 protected $_errstr; protected $_conn; protected $_query_id; public function que

angularjs表格分页功能详解_AngularJS

接上一次,这次主要介绍表格分页功能,由于项目需要这个案例是关于前端分页的方式,现在很少会这么用了,但如有需要可以参考其中的思路 html: 1.通过UL来展示页标,其中每个页标的li是通过异步加载从获取到不同的表格数据来动态生成的. <div class="pagination"> <ul style="float:right"> <li id="previous"><a href=""

JavaScript分页功能的实现方法_javascript技巧

本文实例讲述了JavaScript分页功能的实现方法.分享给大家供大家参考.具体实现方法如下: <script> //定义page为全局变量,以便下面使用 var page; window.onload = function() { var table = document.getElementById("table"); var btnAdd = document.getElementById("btnAdd"); var btnModify = do

用Spring的JdbcTemplate实现分页功能

分页     最近使用了spring中的JdbcTemplate实现数据库的查询和插入操作,发现spring的JdbcTemplate 不象HibernateTemplate那么好,已经实现了分页功能.所以要自己实现,使用getJdbcTemplate().queryForList(string sql)得到的结果集是所有的. 如果你的查询有10000条记录,或者更多,速度肯定慢了,当然你可以通过resultset中的游标控制查询的起始和结束.我这里用的是Oracle数据库,使用伪列ROWNUM

现windows应用程序中用的datagrid具有分页功能

datagrid|window|程序|分页 工作需要,要实现windows应用程序中用的datagrid具有分页功能,不知道ms怎么想的,asp.net的datagrid有这样的功能,为什么不在winForm的datagrid里面提供这样的功能,还得让我费这么大劲儿来重写这个控件,真是麻烦. 首先,我们要做一个类来继承系统的datagrid: using System; using System.Drawing; using System.Collections; using System.Co

Android ListView分页功能实现方法_Android

通过本次小Demo我学到了: 1.ListView的小小的一个分页功能 2.加深了对自定义控件的理解 3.对ListView的优化 4.对BaseAdapter的使用 5.自定义Adapter 6.接口的回调 要实现下面的效果--当拖动ListView到底部的时候,显示一个ProgressBar和一个"正在加载..."的TextView.并且过两秒钟后,在下面加载出新的数据.项目的目录结构和程序要实现的效果如下:      首先是布局部分: 我为了实现此效果,首先在布局文件中新建了一个