0

我在 SQL SERVER 中有 10 条记录。我正在尝试为 JSP Pagination 一次打印 9 个。在第一页它正确显示了 9 条记录,而在第二页它没有显示任何记录:

    id      deptno  deptno2 deptno3 deptno4 deptno5 
    11      9   13           
    13      9   13  12       
    14      9                           
    20      9                           
    29      99  9   13  12   
    48      9                           
    52      9   13  12          
    55      9   13  12       
    60      9   12                  
    66      9

生成的 HQL 如下:

select top 9 this_.id_employee as id1_0_0_  this_.deptno as deptno0_0_, this_.deptno2 as deptno12_0_0_, this_.deptno3 as deptno13_0_0_, this_.deptno4 as deptno14_0_0_, this_.deptno5 as deptno15_0_0_  from hawkseye1.dbo.employee this_ where (this_.deptno=? or this_.deptno2=? or this_.deptno3=? or this_.deptno4=? or this_.deptno5=?) order by this_.name asc    

criteria.setFirstResult(startCounter); // This is 0 on 1st page, 10 on 2nd page
criteria.setMaxResults(9);

但是,列表大小9 first time是正确的,但在second page it is 0, which should be 1

有什么想法吗?

谢谢

4

1 回答 1

0

修复了丢失的记录之谜,它很刺眼,我只需要修复柜台的东西。谢谢大家!

于 2013-10-02T04:45:22.963 回答