The documentation is mistaken.  Previous() should not wrap for the paginated list.  Regardless, you shouldn't use that approach to calculate the number of pages, you should use a separate count(*) query and divide by page size.

For high performance systems, you should not use paginated list at all....you should use queryForList with skip and count parameters.

Clinton


On 6/27/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
Hello,

I seem to be having some problem with the PaginatedList.

When I'm on the first page and I do paginatedList.getPreviousPage(),
iBatis doesn't wrap to the last page... as specified in the javadoc.  I
need this wrapping functionality to compute the total number of pages in
the result set.

Does anyone have any idea as to why this might be happening?

I am using postgres with jdb3.

Thanks.
Aladin

Reply via email to