最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

asp.net 數(shù)據(jù)訪問層 存儲(chǔ)過程分頁(yè)語(yǔ)句

來(lái)源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 22:43:38
文檔

asp.net 數(shù)據(jù)訪問層 存儲(chǔ)過程分頁(yè)語(yǔ)句

asp.net 數(shù)據(jù)訪問層 存儲(chǔ)過程分頁(yè)語(yǔ)句:所以最好在數(shù)據(jù)訪層分頁(yè),如果這樣就要使用存儲(chǔ)過程來(lái)分頁(yè).以下是以pubs 數(shù)據(jù)庫(kù)中的employee表為例來(lái)進(jìn)行數(shù)據(jù)分頁(yè)的存儲(chǔ)過程,你可以參考它根據(jù)實(shí)際情況來(lái)創(chuàng)建自己的存儲(chǔ)過程. 注:@pageindex 數(shù)據(jù)頁(yè)的索引,@dataperpage 每頁(yè)的記錄數(shù)目,@howmanyr
推薦度:
導(dǎo)讀asp.net 數(shù)據(jù)訪問層 存儲(chǔ)過程分頁(yè)語(yǔ)句:所以最好在數(shù)據(jù)訪層分頁(yè),如果這樣就要使用存儲(chǔ)過程來(lái)分頁(yè).以下是以pubs 數(shù)據(jù)庫(kù)中的employee表為例來(lái)進(jìn)行數(shù)據(jù)分頁(yè)的存儲(chǔ)過程,你可以參考它根據(jù)實(shí)際情況來(lái)創(chuàng)建自己的存儲(chǔ)過程. 注:@pageindex 數(shù)據(jù)頁(yè)的索引,@dataperpage 每頁(yè)的記錄數(shù)目,@howmanyr

所以最好在數(shù)據(jù)訪層分頁(yè),如果這樣就要使用存儲(chǔ)過程來(lái)分頁(yè).以下是以pubs 數(shù)據(jù)庫(kù)中的employee表為例來(lái)進(jìn)行數(shù)據(jù)分頁(yè)的存儲(chǔ)過程,你可以參考它根據(jù)實(shí)際情況來(lái)創(chuàng)建自己的存儲(chǔ)過程.

注:@pageindex 數(shù)據(jù)頁(yè)的索引,@dataperpage 每頁(yè)的記錄數(shù)目,@howmanyrecords 用來(lái)獲取總的記錄數(shù).
代碼如下:


create proc getdata @pageindex int,@dataperpage int,@howmanyrecords int output
as
declare @temptable table
(
rowindex int,
emp_id char(9),
fname varchar(20),
minit char(1),
lname varchar(30)
)
insert into @temptable
select row_number() over(order by emp_id) as rowindex,emp_id,fname,minit,lname
from employee
select @howmanyrecords=count(rowindex) from @temptable
select * from @temptable
where rowindex>(@pageindex-1)*@dataperpage
and rowindex<=@pageindex*@dataperpage

declare @howmanyrecords int
exec getdata 2,5,@howmanyrecords output
select @howmanyrecords
declare @x int, @y int, @z int
select @x = 1, @y = 2, @z=3
select @x,@y,@z

create proc getdata2 @pageindex int,@dataperpage int,@howmanyrecords int output
as
declare @temptable table
(
rowindex int,
emp_id char(9),
fname varchar(20),
minit char(1),
lname varchar(30)
)
insert into @temptable
select row_number() over(order by emp_id) as rowindex,emp_id,fname,minit,lname
from employee
select @howmanyrecords=count(rowindex) from @temptable
select * from @temptable
where rowindex>(@pageindex-1)*@dataperpage
and rowindex<=@pageindex*@dataperpage

其中Row_number 函數(shù)可以給檢索來(lái)的每條記錄按照排序來(lái)編號(hào).

接下來(lái)你就可以在asp.net 網(wǎng)頁(yè)后臺(tái)代碼中調(diào)用該存儲(chǔ)過程,就可以獲取想要的數(shù)據(jù).

聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

asp.net 數(shù)據(jù)訪問層 存儲(chǔ)過程分頁(yè)語(yǔ)句

asp.net 數(shù)據(jù)訪問層 存儲(chǔ)過程分頁(yè)語(yǔ)句:所以最好在數(shù)據(jù)訪層分頁(yè),如果這樣就要使用存儲(chǔ)過程來(lái)分頁(yè).以下是以pubs 數(shù)據(jù)庫(kù)中的employee表為例來(lái)進(jìn)行數(shù)據(jù)分頁(yè)的存儲(chǔ)過程,你可以參考它根據(jù)實(shí)際情況來(lái)創(chuàng)建自己的存儲(chǔ)過程. 注:@pageindex 數(shù)據(jù)頁(yè)的索引,@dataperpage 每頁(yè)的記錄數(shù)目,@howmanyr
推薦度:
標(biāo)簽: 數(shù)據(jù) 語(yǔ)句 as
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top