Joined: Wed Apr 28, 2010 10:18 am Posts: 1
|
Hello
I am new to Hibernate, and need your help.
created a generated column in DB2 database ...
ALTER TABLE subscription ADD COLUMN SUBSCRIPTION_NAME_LC VARCHAR(40) GENERATED ALWAYS AS (LOWER(SUBSCRIPTION_NAME));
also done hibernate mappings for that ... <property column="SUBSCRIPTION_NAME_LC" length="254" name="SubscriptionNameLc" not-null="false" type="string" insert ="false" update ="false" generated = "always" >
My requirement is to only read these values. Please let me know this hibernate mappings for generated column are correct or not. And what is recommended for such columns.
|
|