-->
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.  [ 3 posts ] 
Author Message
 Post subject: newbie one-to-many - trying to insert
PostPosted: Mon Jul 26, 2004 2:41 pm 
Newbie

Joined: Mon May 10, 2004 7:58 am
Posts: 15
hi,

why does

Parent p = session.load(...);
Child c = new Child();
c.setParent(p);
session.save(c);
session.flush();

works without putting a "p.getChildren().add(c)" statement (as shown in
Chapter16 of the Reference Documentation)?

what's the difference ?

many thanks


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jul 26, 2004 3:13 pm 
Hibernate Team
Hibernate Team

Joined: Mon Aug 25, 2003 9:11 pm
Posts: 4592
Location: Switzerland
Read it again. One works for uni-, the other for bidirectional associations.

_________________
JAVA PERSISTENCE WITH HIBERNATE
http://jpwh.org
Get the book, training, and consulting for your Hibernate team.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jul 27, 2004 5:46 am 
Newbie

Joined: Mon May 10, 2004 7:58 am
Posts: 15
This is still unclear to me.
If the relationship has been mapped in both Parent and Child,
the following code is not supposed to be consistent in both directions, isn't it?:
Parent p = ...
Child c = new Child();
c.setParent(p);
// p.getChildren().add(c);
session.save(c);
session.flush();

However, if i load the same parent later, the formerly added child appears in the collection.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 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.