Re: Problem trying to avoid N+1 selects

2007-05-16 Thread Larry Meadors
Well, if you want to hire me to fix it, I'll add you to my client list and get you on the schedule. If it doesn't annoy anyone that much, we'll have to wait for someone who needs it bad enough to fix it. :-D Larry On 5/16/07, Stefan Langer <[EMAIL PROTECTED]> wrote: Larry Meadors schrieb: > O

Re: Problem trying to avoid N+1 selects

2007-05-16 Thread Carlos Botto
Thanks for your help, the problem was with the null values in the left join. Carlos On 5/16/07, Stefan Langer <[EMAIL PROTECTED]> wrote: Larry Meadors schrieb: > On 5/16/07, Stefan Langer <[EMAIL PROTECTED]> wrote: >> See issue https://issues.apache.org/jira/browse/IBATIS-375 and please >> v

Re: Problem trying to avoid N+1 selects

2007-05-16 Thread Stefan Langer
Larry Meadors schrieb: On 5/16/07, Stefan Langer <[EMAIL PROTECTED]> wrote: See issue https://issues.apache.org/jira/browse/IBATIS-375 and please vote for it if you find it annoying. ...or even better, get the code from SVN and attach a patch. :) Larry If I could find the time I would go for

Re: Problem trying to avoid N+1 selects

2007-05-16 Thread Larry Meadors
On 5/16/07, Stefan Langer <[EMAIL PROTECTED]> wrote: See issue https://issues.apache.org/jira/browse/IBATIS-375 and please vote for it if you find it annoying. ...or even better, get the code from SVN and attach a patch. :) Larry

Re: Problem trying to avoid N+1 selects

2007-05-16 Thread Stefan Langer
Not sure it is related to your issue but be aware that when you do a left outer join and you have no results for the left join you will still receive a row containing only nulls for your left joined object. IBatis will try to fill up your object with these null values. If your code for some rea

Problem trying to avoid N+1 selects

2007-05-15 Thread Carlos Botto
Hi all, I'm new to iBatis and I'm coverting the existing code to implement iBatis, so sorry in advance if my questions are too simple. I have a problem trying to avoid the n+1 selects. The following Application.xml works fine: