cancel
Showing results for 
Search instead for 
Did you mean: 

Paging parameters

aurelienpel
Champ in-the-making
Champ in-the-making
Hello !

I can read in the UserGuide that paging and order parameters can be added as query-string in the URL, and for the default value for size is 10. As I am working with a lot of data, I defined for the moment "?size=1000" at the end, but is it possible to define it as unlimited ? I tried with ?size=0 but doesn't give what I want.

Thanks a lot,

Aurelien
1 REPLY 1

martin_grofcik
Confirmed Champ
Confirmed Champ
Hi Aurelien,

try:

  public final static int NO_ROW_OFFSET = 0;
  public final static int NO_ROW_LIMIT = Integer.MAX_VALUE;

Regards
Martin