发布网友 发布时间:2022-04-23 06:38
共4个回答
热心网友 时间:2022-04-09 23:19
实际上分页的处理原则是:
每一次点击下一页或者最后一页都是一次请求,只不过每次请求的参数不同,参数为页数和每页多少条数据。
当后台接受到请求时,根据参数写出你需要返回的结果(SQL),这个结果就是你当前分页的数据。
说白了,分页就是根据页数和每页多少条数据去写SQL,SQL返回的结果就是分页的数据。这么说LZ理解了伐?追问原理明白,但有没有具体的实现代码啊。第一次做系统,好难···
热心网友 时间:2022-04-10 00:37
数据库分页,可用存储过程呀~
create or replace package fenyepackage as
type fenyecursor is ref cursor;
end fenyepackage;
--------
表--条件--排序--当前页--一页几条--总页数--总条数六个条件!
create or replace procere fenye(
tablename varchar2,
condition varchar2,
orderby varchar2,
pageno number,
pagerow number,
totalpage out number,
totalrow out number,
scursor out fenyepackage.fenyecursor
)
is
v_sql1 varchar2(500);
v_sql2 varchar2(500);
begin
v_sql1:='select * from '||tablename;
v_sql2:='select count(*) from '||tablename;
if
condition is not null then
v_sql1:=v_sql1 ||' where '||condition;
v_sql2:=v_sql2 ||' where '||condition;
end if;
if
orderby is not null then
v_sql1:=v_sql1 ||' order by '||orderby;
end if;
v_sql1:='select tt.* from ( select v.*,rownum as r from ( '||v_sql1||') v ) tt where tt.r between '||pagerow||'*('||pageno||'-1)+1 and '||pageno||'*'||pagerow ;
open scursor for v_sql1;
execute immediate v_sql2 into totalrow;
if mod(totalrow,pagerow)=0 then
totalpage:=totalrow/pagerow;
else
totalpage:=totalrow/pagerow+1;
end if;
end;
热心网友 时间:2022-04-10 02:11
请问你是ajax访问的后台查询方法么?追问不是的 我用SQL2005访问数据库而已
热心网友 时间:2022-04-10 04:03
这个问题 , 你查询数据时就应该分页查询 。追问求高手指点····
追答你查询数据库的时候就安分页查询阿,查询出来的数据迭代就好了,因为sql查询出来的就是分页的阿。