codegooglecom / easyasp

Automatically exported from code.google.com/p/easyasp
0 stars 0 forks source link

请问easp的存储过程分页有谁用过吗? #10

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
为什么我用了不好用啊?
给出的实例:
采用默认存储过程生成分页数据的方法:

Set rs = Easp.db.GPR("easp_sp_pager",Array
("UserInfo","UserId,UserName","UserSex='Male' And UserAge>20","UserName 
Asc,UserId Asc","UserId",3)) 

是不是不对啊?

上面说的:必须包含两个输出参数:"@@RecordCount"(总记录数)和
"@@PageCount"(总页
数)。

可是实例里并没有好像。

请问具体应该怎么用?

Original issue reported on code.google.com by lovebb1...@gmail.com on 10 Mar 2009 at 8:53

GoogleCodeExporter commented 9 years ago
因为使用默认的存储过程easp_sp_pager的时候已经被程序处理过�
��,自动处理了@@RecordCount和
@@PageCount两个参数,所以不需要手动写入。你可以阅读源代码
的1283—1285行,看看这一段是怎么处理
的。
不知道你说的不好用是什么方面不好用,最好能有个例子说��
�一下。

Original comment by Tainray@gmail.com on 10 Mar 2009 at 2:26