asp.net利用儲存過程分頁程式碼

iDotNetSpace發表於2009-08-07

set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go

--最通用的分頁儲存過程 
-- 獲取指定頁的資料  
 
ALTER PROCEDURE [dbo].[Pagination]  
 
@tblName   varchar(255),       -- 表名  
 
@strGetFields varchar(1000) = '*',  -- 需要返回的列  
 
@fldName varchar(255)='',      -- 排序的欄位名  
 
@PageSize   int = 5,          -- 頁尺寸  
 
@PageIndex  int = 1,           -- 頁碼  
 
@doCount  int = 1,   -- 返回記錄總數, 非 0 值則返回  
 
@OrderType int = 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 !=''  --有where條件
 
   set @strSQL = 'select count(*) as Total from ['+ @tblName +'] where '+ @strWhere  
 
   else  
 
   set @strSQL = 'select count(*) as Total from ['+ @tblName +']'

end  
 
--以上程式碼的意思是如果@doCount傳遞過來的不是0,就執行總數統計。以下的所有程式碼都 
--是@doCount為0的情況  
 
else  --不返回總行數的情況下
 
begin  
 
 
 
if @OrderType != 0  --降序排列
 
begin  
 
   set @strTmp = ' 
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 != ''    --有where條件
 
    set @strSQL = 'select top ' + str(@PageSize) +' '+@strGetFields+ '  from ['+ @tblName +'] where ' + @strWhere + ' '   
 
    else  --沒有where條件
 
    set @strSQL = 'select top ' + str(@PageSize) +' '+@strGetFields+ '  from ['+ @tblName +'] ' 
 
 if @fldName!='' --判斷排序欄位是否為空
  set @strSQL=@strSQL+@strOrder

--如果是第一頁就執行以上程式碼,這樣會加快執行速度  
 
end  
 
else  --不是第一頁情況下
 
begin  
 
--以下程式碼賦予了@strSQL以真正執行的SQL程式碼  
 
 
if @strWhere != '' --有where條件情況下
 
 begin
 if @fldName!='' --判斷排序欄位是否為空
  set @strSQL = 'select top ' + str(@PageSize) +' '+@strGetFields+ '  from ['+ @tblName +'] where [' + @fldName + ']' + @strTmp + '(['+ @fldName + ']) 
  from (select top ' + str((@PageIndex-1)*@PageSize) + ' ['+ @fldName + ']  
  from ['+ @tblName +'] where ' + @strWhere + ' ' + @strOrder + ') as tblTmp) and ' + @strWhere + ' ' + @strOrder  
 else
  set @strSQL = 'select top ' + str(@PageSize) +' '+@strGetFields+ '  from ['+ @tblName +'] where [' + @fldName + ']' + @strTmp + '(['+ @fldName + ']) 
  from (select top ' + str((@PageIndex-1)*@PageSize) + ' ['+ @fldName + ']  
  from ['+ @tblName +'] where ' + @strWhere + ' ) as tblTmp) and ' + @strWhere
 end

else--沒有where條件情況下

 begin
 if @fldName!='' --判斷排序欄位是否為空
  set @strSQL = 'select top ' + str(@PageSize) +' '+@strGetFields+ '  from [' + @tblName +'] where [' + @fldName + ']' + @strTmp + '(['+ @fldName + '])  
  from (select top ' + str((@PageIndex-1)*@PageSize) + ' ['+ @fldName + '] from ['+ @tblName +']' + @strOrder + ') as tblTmp)'+ @strOrder
 else
  set @strSQL = 'select top ' + str(@PageSize) +' '+@strGetFields+ '  from [' + @tblName +'] where [' + @fldName + ']' + @strTmp + '(['+ @fldName + '])  
  from (select top ' + str((@PageIndex-1)*@PageSize) + ' ['+ @fldName + '] from ['+ @tblName +']) as tblTmp)'  
 end

end  
 
end 
exec ( @strSQL)

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-611630/,如需轉載,請註明出處,否則將追究法律責任。

相關文章