Hello,
Using the Xpath querying syntax, I used to search in all of the
properties of node of type my:nodetype the text 'a search string' in
this way:
queryManager.createQuery("//element(*,my:nodetype")[jcr:contains(., 'a
search string')]", Query.XPATH);
Is there an equivalent way to search in all the properties of a set
of nodes with a common nodetype using JCR-SQL2? I've tried replacing
the column name with a dot (as in the XPATH syntax) or with a * (as is
suggested by looking at the examples from Jackrabbit's test cases),
but none of them work well (I get a
javax.jcr.query.InvalidQueryException).
thanks,
Rodrigo.