-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: Hibernate Mappings for generated column
PostPosted: Wed Apr 28, 2010 11:00 am 
Newbie

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.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.