I'm using the following JCR-SQL2 Query to retrieve some files from jackrabbit repository

    SELECT id FROM [nt:file]
  WHERE ISDESCENDANTNODE([/repo/cms]) 

How can I use pagination in jackrabbit to retrieve only a limit number of files.

I mean the COUNT in MS-SQL or LIMIT in MySQL

link|improve this question

79% accept rate
feedback

1 Answer

up vote 4 down vote accepted

How about this:

Query query = queryManager.createQuery(queryString, Query.SQL);
QueryImpl q = (QueryImpl) query;
q.setLimit(10);
q.setOffset(10); // Start from the 10:th file
QueryResult result = q.execute();
link|improve this answer
it seems that jackrabbit did not implement the setLimit() and setOffset() methods and i get this error : Caused by: java.lang.RuntimeException: TODO: JCRRMI-26 .... which means this method will be implemented later – Ammar Sep 17 '11 at 8:05
1  
@Ammar: AFAICS you access Jackrabbit through RMI. Jackrabbit itself does support the setLimit() and setOffset() method. The error you are getting is from the RMI layer which does not (yet) implement these methods. – michid Sep 20 '11 at 10:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.