-->
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: right outer join - not supported by OracleJoinFragment
PostPosted: Fri Jan 18, 2008 10:25 am 
Newbie

Joined: Thu Jan 10, 2008 6:12 am
Posts: 3
Hi experts,

I have two classes:
- Cat
- Person

A Cat has a reference to the following:
- Kittens
- PetStore
- ...

A Person has a cat

The from clause in my query:

first step:
Code:
...
from Cat as cat
left outer join cat.kittens as kittens
left outer join cat.petStore as petStore
left outer join petStore.....
...


No problem here, this works.

Next step, I want to join Person with cat.
Code:
...
from Person as per
right outer join per.cat as cat
left outer join cat.kittens as kittens
left outer join cat.petStore as petStore
left outer join petStore.....
...


This results in: java.lang.UnsupportedOperationException: join type not supported by OracleJoinFragment.

Is this normal or am I doing it wrong? And is there a workaround?

The mapping for the cat attribute on Person looks like this:

<many-to-one name="cat" column="CAT_ID" class="Cat" lazy="false"/>




Lennert


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.