-->
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: bug many to many when joinColumns is not a primary key
PostPosted: Tue Dec 11, 2007 12:04 am 
Newbie

Joined: Sat Dec 30, 2006 3:07 pm
Posts: 16
Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp

Hibernate version:
3.2.5.ga

Mapping documents:

annotations 3.3.0

Name and version of the database you are using:

mysql 5.0

The generated SQL (show_sql=true):


Given the following mapping (where 'asin' is not the primary key), I am getting an invalid insert

insert
into
amazon_item_browsenodes
(asin, amazon_node_id)
values
(?, ?)

the asin value is the AmazonItem primary key,
Am I doing something wrong here?

Here is the relevant mapping

@CollectionOfElements
@ManyToMany(targetEntity=AmazonEcsBrowsenodes.class, fetch=FetchType.EAGER)
@JoinTable(name="amazon_item_browsenodes",
joinColumns=@JoinColumn(name="asin", referencedColumnName="asin"),
inverseJoinColumns=@JoinColumn(name="amazon_node_id", referencedColumnName="amazon_node_id")
)
private List<AmazonEcsBrowsenodes> amazonBrowsenodes = new ArrayList<AmazonEcsBrowsenodes>(0);


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.