-->
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.  [ 2 posts ] 
Author Message
 Post subject: Generating properties with sequence
PostPosted: Mon Jan 19, 2004 10:09 am 
Newbie

Joined: Thu Jan 08, 2004 5:11 am
Posts: 4
Location: France
Hi,

I want to generate a property for a class from a db sequence, like it can be done for the id of objects.

Is there any mean to declare this in an hibernate mapping ?

I've tried something like this :

Code:
<class name="test" table="test">
  <id name="id" column="id" type="long">
    <generator class="sequence">
      <param name="sequence">seq_test</param>
    </generator>
  </id>

  <property name="number" column="number" type="long">
    <generator class="sequence">
      <param name="sequence">my_seq</param>
    </generator>
  </property>
</class>


and, as I supposed, it doesn't work


any ideas ?


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jan 19, 2004 10:27 am 
Hibernate Team
Hibernate Team

Joined: Sun Sep 14, 2003 3:54 am
Posts: 7256
Location: Paris, France
It does not work. use the underlying conenctino to get the next sequence and update it for example using onSave().

_________________
Emmanuel


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

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.