| 网站首页 | 硬件维修 | 应用学院 | 网络组建 | 网站制作 | 菜鸟黑客 | 编程之道 | 数码大全 | 娱乐休闲 | 软件下载 | 在线视频 | 请您留言 | 技术论坛 | 
专 题 栏 目
最 新 热 门
最 新 推 荐
相 关 文 章
  • 将金额小写转化成汉字大写的…

  • 让浏览者记住你的主页

  • 基于客户端的分页导航(3)

  • 基于客户端的分页导航(2)

  • 如何将 CSS 加入网页

  • 改变字体而不影响网页

  • 如何将 CSS 加诸于网页

  • 流程图软件Visio作“高难度”…

  • 用FAQGenie迅速制作“常见问…

  • FrontPage XP直通车第6站——…

  • Q
    您现在的位置: 我是IT人 >> 网站制作 >> ASP >> 文章正文
    存储过程分页         
    存储过程分页
    作者:网络 文章来源:转载 点击数: 更新时间:2005-9-30
    [ 字体:缩小 正常 放大 | 双击自动滚屏 ]
    请选择合适的字体颜色:


    if exists(select * from sysobjects where ID = object_id("up_TopicList"))
    drop proc up_TopicList
    go

    create proc up_TopicList
    @a_ForumID int , @a_intDays int , @a_intPageNo int , @a_intPageSize tinyint
    as
    declare @m_intRecordNumber int
    declare @m_intStartRecord int
    select @m_intRecordNumber = @a_intPageSize * @a_intPageNo
    select @m_intStartRecord = @a_intPageSize * (@a_intPageNo - 1) + 1

    if @a_intDays = 0 --如果不限定天数
    begin
    /*求符合条件记录数*/
    select "RecordCount" = count(*)
    from BBS where Layer=1 and ForumID = @a_ForumID

    /*输出纪录*/
    /*首先定义可滚动光标*/
    set rowcount @m_intRecordNumber
    declare m_curTemp Scroll cursor
    for
    select a.ID ,a.Title , d.UserName , a.FaceID ,
    'ContentSize' = datalength(a.Content) ,
    'TotalChilds' = (select sum(TotalChilds)
    from BBS as b
    where a.RootID = b.RootID) ,
    'LastReplyTime' = (select max(PostTime)
    from BBS as c
    where a.RootID = c.RootID)
    from BBS as a
    join BBSUser as d on a.UserID = d.ID
    where Layer=1 and ForumID = @a_ForumID
    order by RootID desc , Layer , PostTime
    open m_curTemp
    fetch absolute @m_intStartRecord from m_curTemp
    while @@fetch_status = 0
    fetch next from m_curTemp

    set rowcount 0
    /*清场*/
    CLOSE m_curTemp
    DEALLOCATE m_curTemp
    end

    else --如果限定天数

    begin
    /*求符合条件记录数*/
    select "RecordCount" = count(*)
    from BBS where Layer=1 and ForumID = @a_ForumID
    and dateadd(day , @a_intDays , PostTime) > getdate()

    /*输出纪录*/
    /*首先定义可滚动光标*/
    set rowcount @m_intRecordNumber
    declare m_curTemp Scroll cursor
    for
    select a.ID ,a.Title , d.UserName , a.FaceID ,
    'ContentSize' = datalength(a.Content) ,
    'TotalChilds' = (select sum(TotalChilds)
    from BBS as b
    where a.RootID = b.RootID) ,
    'LastReplyTime' = (select max(PostTime)
    from BBS as c
    where a.RootID = c.RootID)
    from BBS as a
    join BBSUser as d on a.UserID = d.ID
    where Layer=1 and ForumID = @a_ForumID
    and dateadd(day , @a_intDays , PostTime) > getdate()
    order by RootID desc , Layer , PostTime
    open m_curTemp
    fetch absolute @m_intStartRecord from m_curTemp
    while @@fetch_status = 0
    fetch next from m_curTemp

    set rowcount 0
    /*清场*/
    CLOSE m_curTemp
    DEALLOCATE m_curTemp
    end
    go

    [1] [2] 下一页  

    文章录入:小秦    责任编辑:小秦 
  • 上一篇文章:

  • 下一篇文章:
  • 发表评论】【加入收藏】【告诉好友】【打印此文】【关闭窗口
    网友评论:(只显示最新10条。评论内容只代表网友观点,与本站立场无关!)
    | 设为首页 | 加入收藏 | 联系站长 | 关于我们 | 友情链接 | 版权申明 |