qileilove

blog已经转移至github,大家请访问 http://qaseven.github.io/

Oracle数据库分页的存储过程

 最近在复习oracle数据库,只能说oracle数据库实在是太强大了,当然学习起来也就复杂了。下面是使用oracle的分页算法的存储过程,拿出来大家参考一下吧。
  我认为其中涉及到的包,游标,exception是有点难理解难记忆的,大家可以参考一下相关的书籍好好理解理解~~
//oracle分页存储过程
create or replace proceduce fenye(tableName in varchar2,pageSize in number,pageNow in number,myRowCount out number,myPageCount out number,
p_cursor out t1.t---返回记录数的游标
)
is
--定义部分
v_sql varchar2(500);
v_begin number:=(pageNow-1)*pageSize+1;
v_end number:=pageNow*pageSize;
begin
--开始执行部分
v_sql:='select * from (select t1.*,rownum rn from(select * from '||tableName||') t1 where rownum<='||v_end||')where rn>='||v_begin||'':这表示显示的是第六到第十页的数据
--把游标和sql语句关联
open p_cursor for v_sql;
--计算myRowCount和myPageCount
v_sql:='select count(*)from '||tableName||'';
execute immediate v_sql into myRowCount--执行sql语句并把返回的值赋给myRowCount
--计算myPageCount
if mod(myRowCount,pageSize)=0 then
myPageCount:=myRowCount/pageSize;
else
myPageCount:=myRowCount/pageSize+1;
end if;
--关闭游标
close p_cursor;
end;

posted on 2014-03-24 11:49 顺其自然EVO 阅读(238) 评论(0)  编辑  收藏 所属分类: 数据库


只有注册用户登录后才能发表评论。


网站导航:
 
<2014年3月>
2324252627281
2345678
9101112131415
16171819202122
23242526272829
303112345

导航

统计

常用链接

留言簿(55)

随笔分类

随笔档案

文章分类

文章档案

搜索

最新评论

阅读排行榜

评论排行榜