Re: Idle Threads - Glassfish/DB2

2009-04-16 Thread Jeff Hibbs
Mario - Thanks for your time. There are some differences between the JCC logs. One thing that looks suspect to me is that the RECEIVE BUFFER: ENDUOWRM message is present after each qry when using the SIMPLE Data source pool (as well as the Apache DBCP pool), but not always there while using

Dot Magee/HQ/McNichols is out of the office.

2009-04-16 Thread Dot . Magee
I will be out of the office starting 04/16/2009 and will not return until 04/20/2009. I will be glad to answer your email when I return. Thanks.

Subquery

2009-04-16 Thread AlexElba
Hello, I have class A{ private Integer id; private Set primB; private Set secBs; private SetInteger allBIds; . } class B{ private Integer id; private String name; } select id=getIds parameterClass=map resultClass=java.lang.Integer ![CDATA[ select distinct B_id from B

SubQuery

2009-04-16 Thread Aleksandr Elbakyan
Hello, I have class A{ private Integer id; private Set primB; private Set secBs; private SetInteger allBIds; .. } class B{ private Integer id; private String name; . }   select id=getIds parameterClass=map  resultClass=java.lang.Integer     ![CDATA[           select

Re: SubQuery

2009-04-16 Thread Nathan Maves
Start at the bottom of page 38 of the developers guide. You might even want to read the whole thing because it might show you a better way to achieve what you are looking for. Right now you have the makings of a n+1 problem. Nathan On Thu, Apr 16, 2009 at 2:35 PM, Aleksandr Elbakyan