Re: Mapping Classes on Multiple Joined Tables

2005-04-21 Thread Jakob Braeuchi
hi armin, Armin Waibel schrieb: Stefan Walkner wrote: hello, we start working on this issue. Hope till next release this will be fixed. thank you for the info! I really was searching long and was not able to find any information about that, so I'm glad to hear any response from you. The issue

Re: Mapping Classes on Multiple Joined Tables

2005-04-21 Thread Armin Waibel
Jakob Braeuchi wrote: The issue is noted in the release-notes: snip - When a class mapped on multiple joined tables was used in a reference only objects of the base type class will be instantiated, e.g. a Company class has a 1:n reference 'employees' to a base class Employee and class

RE: Mapping Classes on Multiple Joined Tables

2005-04-21 Thread Gelhar, Wallace Joseph
- From: Armin Waibel [mailto:[EMAIL PROTECTED] Sent: Thursday, April 21, 2005 12:16 PM To: OJB Users List Subject: Re: Mapping Classes on Multiple Joined Tables Jakob Braeuchi wrote: The issue is noted in the release-notes: snip - When a class mapped on multiple joined tables was used

Re: Mapping Classes on Multiple Joined Tables

2005-04-20 Thread Armin Waibel
Hi Stefan, Stefan Walkner wrote: hello, I use Mapping Classes on Multiple Joined Tables to map an Object which inherits from another into two tables. BUT: is there a way to get the different objects back, when querying? I mean, I have following mappings: we start working on this issue. Hope till

Re: Mapping Classes on Multiple Joined Tables

2005-04-20 Thread Stefan Walkner
hello, we start working on this issue. Hope till next release this will be fixed. thank you for the info! I really was searching long and was not able to find any information about that, so I'm glad to hear any response from you. Thank you, stefan walkner

Re: Mapping Classes on Multiple Joined Tables

2005-04-20 Thread Armin Waibel
Stefan Walkner wrote: hello, we start working on this issue. Hope till next release this will be fixed. thank you for the info! I really was searching long and was not able to find any information about that, so I'm glad to hear any response from you. The issue is noted in the release-notes:

Re: Mapping Classes on Multiple Joined Tables

2004-05-06 Thread Jakob Braeuchi
hi charles, this should do it: Query q = QueryFactory.newQuery(A.class, c); broker.getCollectionByQuery(q); fyi there's a testcase dealing with multi-joined-tables InheritanceMultipleTableTest. this testcase requires the latest from repository to pass completely. hth jakob Charles N. Harvey