-->
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: many to many association
PostPosted: Sun Jun 04, 2006 10:52 pm 
Newbie

Joined: Sun Jun 04, 2006 10:40 pm
Posts: 2
Hello

suppose those 3 tables
Product( idProducts PK, ...)
Order(OrderId PK , ...)
orderDetails( OrderId, ProductsID, Quantity) PK(OrderId, ProductsID)

how can i map orderDetails ???

Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp

Hibernate version:

Mapping documents:

Code between sessionFactory.openSession() and session.close():

Full stack trace of any exception that occurs:

Name and version of the database you are using:

The generated SQL (show_sql=true):

Debug level Hibernate log excerpt:


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jun 05, 2006 7:04 am 
Beginner
Beginner

Joined: Wed May 03, 2006 5:10 am
Posts: 32
Location: Monopoli - Italy
Should be:

Code:
<class name="OrderDetails, xxx" table="orderDetails">
<composite-id>
   <key-many-to-one name="Product" class="Product, xxx" column="ProductsID" />
   <key-many-to-one name="Order" class="Order, xxx" column="OrderId" />
</composite-id>
<property name="Quantity" column="Quantity" type="Int32" />
</class>


Antonella


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.