• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

Web开发中用sql语句完成分页的高效率方法

发布: 2007-6-21 12:06 | 作者:   | 来源:   | 查看: 19次 | 进入软件测试论坛讨论

领测软件测试网

   
  一、Jsp方法如下:
  **********************
  <%@ page language="java" import="java.util.*,java.sql.*" %>
  <%@ page contentType="text/html;charset=gb2312"%>

  
  <%
  int curpage=1;//当前页
  int page_record=20;//每页显示的记录数
  //用下面的方法(sql查询完成,速度快)
  curpage=Integer.parseInt(request.getParameter("page"));//获取传递的值,需要显示的页
  ResultSet rs=cn.rsexecuteQuery("select top "+page_record+" * from tablename where id not in (select top "+(curpage*page_record)+" id from tablename order by id desc) order by id desc");
  //本查询语句得到的是所要显示的1000页的20条记录,大致思路为——子查询排除需要显示的记录前的所有记录,父查询则对余下的记录进行降序排列
  while(rs.next) {
   out.println(rs.getInt("id").toString());
  }
  rs.close();
  %>
  **********************
  二、asp中的方法
  *******************
  <%@ LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
  <%
  dim curpage=1'当前页
  dim page_record=20'每页显示的记录数
  curpage=request("page")'获取传递的值,需要显示的页
  ……'连接数据库操作代码省略
  rs.open "select top "+page_record+" * from tablename where id not in (select top "+(curpage*page_record)+" id from tablename order by id desc) order by id desc",conn,1,3
  '本查询语句得到的是所要显示的1000页的20条记录,大致思路为——子查询排除需要显示的记录前的所有记录,父查询则对余下的记录进行降序排列
  while not rs.eof
  response.write rs("id")
  rs.movenext
  wend
  rs.close
  conn.close
  %>
  *********************

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备2023014753号-2
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网