-->
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: join on joined property
PostPosted: Mon Nov 03, 2008 12:18 pm 
Newbie

Joined: Mon Nov 03, 2008 11:58 am
Posts: 2
I am using hibernate for mapping my Virtuemart database to an object. I want to add the taxrate to an order item by using a double join.

I used the patch (http://opensource.atlassian.com/projects/hibernate/browse/HHH-1829)
for enabling to use the property-ref.

The problem is that i want to join on an join, which is possible in standard SQL but doesn't seem to be possible in Hibernate, i get an SQL error. The part of the mapping is as follows:

Code:
      <join table="vm_product">
         <key column="product_id" property-ref="productID" />
         <property name="taxID" column="product_tax_id" />
      </join>
      
      <join table="vm_tax_rate" optional="true">
         <key column="tax_rate_id" property-ref="taxID" />
         <property name="taxRate" column="tax_rate" />
      </join>


When i use this i get the following error:

Quote:
Unknown column 'orderitems0_.product_tax_id' in 'on clause'


Is there a way to fix this? Or is there a workaround? Or does anyone know how i can edit this in my current hibernate version (version 3.2.6).

Thanx in forward.

Timon


Top
 Profile  
 
 Post subject: Help
PostPosted: Wed Nov 05, 2008 4:19 am 
Newbie

Joined: Mon Nov 03, 2008 11:58 am
Posts: 2
Is there anyone who can help me?


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.