Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I use the current date in an HQL query with an Oracle database?

I'm trying to write this query using Hibernate 3 and Oracle 10.

from Alert alert where alert.expiration > current_date() order by alert.priority, alert.updated, alert.name 

It's creating SQL like this -

Hibernate: select alert0_.ANNOUNCEMENTS_ID as ANNOUNCE1_1_, alert0_.ANNOUNCEMENT S_NAME as ANNOUNCE2_1_, alert0_.ANNOUNCEMENTS_PRIORITY as ANNOUNCE3_1_, alert0_. ANNOUNCEMENTS_EXPIRATION as ANNOUNCE4_1_, alert0_.ANNOUNCEMENTS_UPDATE_DATE as A NNOUNCE5_1_ from NYC311_ANNOUNCEMENTS alert0_ where (alert0_.ANNOUNCEMENTS_EXPIR ATION>current_date()) order by  alert0_.ANNOUNCEMENTS_PRIORITY , alert0_.ANNOUNC EMENTS_UPDATE_DATE , alert0_.ANNOUNCEMENTS_NAME 

I'm getting all of these wacky errors like "missing right parenthesis" when there is apparently perfectly balanced parenthesis.

Why is Oracle freaking out at this? Is there a better way to write my HQL query?

like image 392
bpapa Avatar asked Feb 04 '09 20:02

bpapa


People also ask

How do I pass a date in HQL query?

add(Calendar. YEAR, -1); String dateLimit = cal. getTime(). toString(); Date dateFormatter = new SimpleDateFormat("dd-MMM-yyyy").

How do I get the current date in Oracle SQL query?

To select current date (Today) before midnight (one second before) you can use any of the following statements: SELECT TRUNC(SYSDATE + 1) - 1/(24*60*60) FROM DUAL SELECT TRUNC(SYSDATE + 1) - INTERVAL '1' SECOND FROM DUAL; What it does: Sum one day to SYSDATE : SYSDATE + 1 , now the date is Tomorrow.


2 Answers

Shouldn't it be current_date?

Hibernate will translate it to the proper dialect.

I did not find a real "Hibernate will translate this to that" reference documentation, but the expression, in general, can be found in HQL Expressions for Hibernate 4.3.

Then there is the Java Persistence API 2.0 (JPA) specification which defines expressions for the Java Persistence query language (JPQL) and their meaning e.g. for current_date:

4.6.17.2.3 Datetime Functions functions_returning_datetime:= CURRENT_DATE | CURRENT_TIME | CURRENT_TIMESTAMP The datetime functions return the value of current date, time, and timestamp on the database server.

like image 63
Michael Pralow Avatar answered Sep 18 '22 23:09

Michael Pralow


Is current_date() a Hibernate function?

I would use sysdate instead. like this:

where alert.expiration > sysdate  

Or to ignore time of day:

where alert.expiration > trunc(sysdate)  
like image 34
Lost in Alabama Avatar answered Sep 20 '22 23:09

Lost in Alabama