Hi All,
Has anyone been able to get wrappers (Long, Integer ect) to work using:
<sql-type jdbc-type="NUMERIC" precision='10' hibernate-type="long" />
I did not see a hibernate-type in the source code for support of wrappers. I can get it to work on idividual columns for tables using:
<table name="TABLE_NAME" >
<column name="COLUMN_NAME" property="propertyname" type="java.lang.Long" />
</table>
But I would like to get the types mapped to wrappers globally so I can then use the table element to map individually.
Thanks,
-Tony
|