SELECT x FROM SomeClass
WHERE x.dateAtt BETWEEN CURRENT_DATE AND (CURRENT_DATE + 1 MONTH)
In the above JPQL statement, SomeClass has a memebr dateAttr, which is a java.util.Date and has a @Temporal(javax.persistence.TemporalType.DATE) annotation.
I need a way to do the (CURRENT_DATE + 1 MONTH) bit - it is obviously wrong in its current state - but cannot find the doc with the date function for JPQL.
Can anyone point me in the direction of a doc that documents JPQL date functions (and also how to do this particular query)?
@PrePersistor@PreUpdate? – Shervin May 18 '10 at 10:54@PrePersistor@PreUpdate. The query is a named query on a JPA Entity class (SomeClass). – bguiz May 18 '10 at 11:07Datemanipulations and then pass it into the query using a:parameter, however, I would much rather do it in the JPQL itself and avoid that unnecessary code. – bguiz May 18 '10 at 11:09