vote up 0 vote down star

Hello friends,

I want to perform data time operations using hibernate hql.

I want to add and subtract two dates as well as I want to subtract 1 year or 1 month from a particular date.

How is this possible using HQL in hibernate.

Does anyone know about it?

is there any tutorial available for this?

Please help if you can.

Thanks.

flag

0% accept rate

3 Answers

vote up -1 vote down

Should not be problem. Read ahead

http://docs.jboss.org/hibernate/stable/core/reference/en/html/objectstate-modifying.html

link|flag
I read content on your link but I could not understand how it can help me in solving my problem. Can you please clarify it further? – amar4kintu Jun 24 at 11:57
Well it is just an update scenario but your problem is datetime arithmetic, sorry for that. KlausMeier's answer covers the most of the answer, however, what will help is if you edit your question and state your problem with example. – Faheemitian Jun 24 at 15:31
-1 this is a 404 page- – Andreas Petersson Aug 21 at 10:09
Andreas, it doesn't use to be a 404 page when posted :) – Faheemitian Aug 28 at 18:02
vote up 0 vote down

See http://stackoverflow.com/questions/639522/performing-date-time-math-in-hql for an example.

To use custom sql you must wrote a own hibernate dialect and register:

registerFunction("weekday", new SQLFunctionTemplate(Hibernate.INTEGER, "to_char(?1,'D')") );

link|flag
Yes.. I saw that link but in Hibernate there is no provision given for adding or subtracting date properly. suppose if I want a date before a year using current_timestamp() of HQL. What should be done as there is no additional function given for that. Is there any better way? Thanks. – amar4kintu Jun 24 at 11:55
Hello, on following link I found detailed description of creating custom hibernate dialect for sql server. It is explained in last answer of the link. Hope it will help someone. forums.hibernate.org/viewtopic.php?f=1&t=9954… – amar4kintu Jun 25 at 11:31
Hi amar4kintu, if my answer has helped, can you please vote or mark the answer with the green checkmark? – KlausMeier Jun 26 at 6:30
vote up 0 vote down

You need to create your own dialect. Something like the following:

public class MyDialect extends MySQLInnoDBDialect{
      public myDialect() {
      super();
      registerFunction("date_add_interval", new SQLFunctionTemplate(Hibernate.DATE, "date_add(?1, INTERVAL ?2 ?3)"));
      }
    }
link|flag

Your Answer

Get an OpenID
or

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