Hi All,
I am using a postgresql db which supports the data type double[]. I have a class which has a member variable of type double[].
I want to be able to map my member variable to the column of the same type but cannot seem a way to do that in Hibernate.
What needs to go into the hbm.xml file?
It works for an array of bytes...like this (my member variable is of type byte[]).
<property name="dataStream" type="binary">
<column name="data" />
</property>
Any help would be greatly appreciated...
Thanks, venkman
|