首页 > 开发 > 综合 > 正文

关于使用存储过程创建分页

2024-07-21 02:05:56
字体:
来源:转载
供稿:网友

2005-1-4
关于使用存储过程创建分页

    今天查询有关sql server 索引的资料 无意在一篇文章的末尾发现一个关于使用存储过程创建分页的代码,直接复制到查询分析器里有误,整理调试了一个,搬上来一起学习一下。

    注:原作者 freedk  以下为笔者整理 这是一个相对最优的方法在大量数据集中表现突出
    
    建立一个 web 应用,分页浏览功能必不可少。这个问题是数据库处理中十分常见的问题。经典的数据分页方法是:ado 纪录集分页法,也就是利用ado自带的分页功能(利用游标)来实现分页。但这种分页方法仅适用于较小数据量的情形,因为游标本身有缺点:游标是存放在内存中,很费内存。游标一建立,就将相关的记录锁住,直到取消游标。游标提供了对特定集合中逐行扫描的手段,一般使用游标来逐行遍历数据,根据取出数据条件的不同进行不同的操作。而对于多表和大表中定义的游标(大的数据集合)循环很容易使程序进入一个漫长的等待甚至死机。
  更重要的是,对于非常大的数据模型而言,分页检索时,如果按照传统的每次都加载整个数据源的方法是非常浪费资源的。现在流行的分页方法一般是检索页面大小的块区的数据,而非检索所有的数据,然后单步执行当前行。

    思路来源:
    从publish 表中取出第 n 条到第 m 条的记录:
    select top m-n+1 *
      from publish
      where (id not in
              (select top n-1 id
             from publish))

    存储过程:

create procedure pagination3
@tblname varchar(255) , -- 表名
@strgetfields varchar(1000) = '*', -- 需要返回的列
@fldname varchar(255)='', -- 排序的字段名
@pagesize int = 10, -- 页尺寸
@pageindex int = 1, -- 页码
@docount bit = 0, -- 返回记录总数, 非 0 值则返回
@ordertype bit = 0, -- 设置排序类型, 非 0 值则降序
@strwhere varchar(1500) = '' -- 查询条件 (注意: 不要加 where)
as

declare @strsql varchar(5000) -- 主语句
declare @strtmp varchar(110) -- 临时变量
declare @strorder varchar(400) -- 排序类型

if @docount != 0
   begin
      if @strwhere !=''
         set @strsql = 'select count(*)  total from  where '[email protected]
      else
         set @strsql = 'select count(*)  total from '
   end
--以上代码的意思是如果@docount传递过来的不是0,就执行总数统计。以下的所有代码都是@docount为0的情况:

else
   begin
      if @ordertype != 0
         begin
            set @strtmp = '<(select min'
            set @strorder = ' order by [' + @fldname +'] desc'
         --如果@ordertype不是0,就执行降序,这句很重要!

         end
      else
         begin
            set @strtmp = '>(select max'
            set @strorder = ' order by [' + @fldname +'] asc'
         end

     if @pageindex = 1
        begin
           if @strwhere != ''

              set @strsql = 'select top ' + str(@pagesize) +' '[email protected]+ ' from [' + @tblname + '] where ' + @strwhere + ' ' + @strorder
           else

              set @strsql = 'select top ' + str(@pagesize) +' '[email protected]+ ' from ['+ @tblname + '] '+ @strorder
      --如果是第一页就执行以上代码,这样会加快执行速度
        end
     else
         begin
           set @strsql = 'select top ' + str(@pagesize) +' '[email protected]+ ' from ['
                        + @tblname + '] where [' + @fldname + ']' + @strtmp + '(['
                        + @fldname + ']) from (select top ' + str((@pageindex-1)*@pagesize) + ' ['
                        + @fldname + ']  from [' + @tblname + ']' + @strorder + ') as tbltmp)'
                        + @strorder

           if @strwhere != ''
             set @strsql = 'select top ' + str(@pagesize) +' '[email protected]+ ' from ['
                        + @tblname + '] where [' + @fldname + ']' + @strtmp + '(['
                        + @fldname + ']) from (select top ' + str((@pageindex-1)*@pagesize) + ' ['
                        + @fldname + '] from [' + @tblname + '] where ' + @strwhere + ' '
                        + @strorder + ') as tbltmp) and ' + @strwhere + ' ' + @strorder
         end
   end
exec (@strsql)
--print @strsql
go


以上代码在winxp_sp2   sql server2000 personal 下调试通过
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表