I have Class CustomDate and that is referred in other class called Test.

public   class CustomDate{
    public String toString(){
       return "20100829"
    }
}
public class Test{
    CustomDate date;
}

In Mapping file of Test

<property name="date" COLUMN="DATE">

I want to save only long value and type should be long type and i should not save date object and string value.long value will be this like:"20100829" actual date:29-08-2010. Because in feature if want compare dates in sql it may create problem, if it is long value, sql compare queries will fine. Do we have any way do it in Hibernate?

link|improve this question

77% accept rate
feedback

1 Answer

up vote 3 down vote accepted

You'll have to implement the UserType interface, and define the behavior of your new type.

<property name="twoStrings" type="com.company.CustomDate" />

Resources :

Related posts :

link|improve this answer
+1 for body of the answer, and the nice layout :) – Pascal Thivent Aug 28 '10 at 8:24
I totally stole it from polygenelubricants :P – Colin Hebert Aug 28 '10 at 8:27
feedback

Your Answer

 
or
required, but never shown

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