标题: 大家是怎么处理分页的 [打印本页] 作者: 樊占江 时间: 2012-8-5 15:17 标题: 大家是怎么处理分页的 我一般都是用SQL来处理分页,大家有没有试过用代码分页。
我分页SQl:
select top 页大小*
from texttable
where(id not in (select top 页大小*(页数-1) id from 表 order by id)
)
order by id
数据库sqlserver作者: 谭威 时间: 2012-8-5 15:44
光有Sql语句就能分吗,页面上的显示呢??? 后台处理上页下页的超链接请求呢? ,分页的PageBean呢?作者: 樊占江 时间: 2012-8-6 23:12
String numSql = "select count(*) from tb_user";
ResultSet resultSet = new ConnDB().read(numSql);
try {
while (resultSet.next()) {
num = resultSet.getInt(1);