OJB Deadlock due to reference descriptor

2008-08-20 Thread SUMIT JAIN
be a deadlock but OJB does not throw any exception and is working fine. Can anybody elaborate on this why is it working fine Or is there a mistake in my mapping? -- View this message in context: http://www.nabble.com/OJB-Deadlock-due-to-reference-descriptor-tp19067031p19067031.html Sent from

RE: OJB Deadlock due to reference descriptor

2008-08-20 Thread Janssen, Roger
Subject: OJB Deadlock due to reference descriptor I am using OJB with java 1.5 I have done the following mapping class-descriptor class=applications.dts.models.testcase.testcasegrid.TestCaseGrid table=dts.testcaseactions field-descriptor name=testCaseActionId column=TestCaseActionID

Re: OJB Deadlock due to reference descriptor

2008-08-20 Thread Ilkka Priha
OJB fully supports mapping of several classes to the same table. In this case, you'll read the same data into two data structures being kind of reflections of each other. -- Ilkka SUMIT JAIN wrote: I am using OJB with java 1.5 I have done the following mapping class-descriptor

Re: OJB Deadlock due to reference descriptor

2008-08-20 Thread Ilkka Priha
Oops, the tables are not the same, so Roger's reply gives a better answer. -- Ilkka Ilkka Priha wrote: OJB fully supports mapping of several classes to the same table. In this case, you'll read the same data into two data structures being kind of reflections of each other. -- Ilkka SUMIT