Hi,
Marcel Reutegger wrote:
>> So, I hope to limit the result set amount when query executed and
>> returned, just like MySQL's " Limit " statment.
>
> This would be a proprietary extension, and I don't know how you would
> specify such a keyword in XPath.
I think the position() function in XPath is the "official" way of
achieving this effect. Something like
//*[position() < 100]
or
//*[position() >= 100 and position() < 200]
Currently Jackrabbit only supports the equality comparisons for the
position() function. Should a Jira issue be posted for this?
BR,
Jukka Zitting