0
votes
1answer
38 views

sort and limit castor query

I am attempting to return a single object via castor query that has the earliest date. This is the sort of thing I have been trying: SELECT p FROM model.objects.Product p LIMIT $1 WHERE p.status=$2 ...
0
votes
0answers
177 views

How to do embedded query using OQL in MAT Eclipse

I can get all Thread objects by using query as below SELECT OBJECTS dominators(s) FROM java.lang.Thread s then if I want to do further analysis of the returned result objects, the OQL I think ...