Re: HELP NEEDED : Bidirectional associations

2009-05-12 Thread RO86
ng of any configuration, other than weak reference > caching, > will work). > This is not ideal and is solved by iBATIS 3.0, which is just around the > corner. > > Clinton > > On Mon, May 11, 2009 at 6:54 AM, RO86 wrote: > >> Hi, All Suppose this sitiuation DB

HELP NEEDED : Bidirectional associations

2009-05-11 Thread RO86
Hi, All Suppose this sitiuation DB Tables: A(ida, desc) , B(idb, ida, desc) Java Classes: public class A{ String ida; String desc; List Bs; } public class B{String idb; String desc; A parentA;} I am new to iBatis and I am trying to work around thi