Working on a logging feature, I only wish to keep the last 200 records in the datastore.

How can I do this in JDOQL?

If I'd use SQL it would be as easy as

DELETE FROM MyTable OFFSET 201 ORDER BY myDate DESC,

but I have a hard time to find something similar for JDOQL.

link|improve this question
feedback

1 Answer

Query q = pm.newQuery("SELECT FROM mydomain.MyClass ORDER BY myDate DESC RANGE 201");
q.deletePersistentAll()

Looks very similar to me

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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