Re: isPropertyAvailable not working

2008-06-18 Thread WhyDontYouSlide
Hey all, after thousands tries i went to the solution...a bit strange IBATIS seems not supporting java.util.Map and all his children classes as parameters for apply isPropertyAvailable... this happens in fact only if u have objects to be tested inside the HashMap. IBATIS cannot recognize if

isPropertyAvailable not working

2008-06-18 Thread WhyDontYouSlide
TIPO_RUOLO = '1' problem is that i'm 100% SURE (inspecting in debug mode) that the object "filtroPolizza.ricercaCliente" IS NOT NULL and also the subProperty "getCodCliente" is NOT NULL as well... and the dynamic tag "isPropertyAvailable" FAIL the

isPropertyAvailable

2007-11-23 Thread Chris McMahon
Does work with and null values? I expected that if I set a property to null in a HashMap, that would be true for that property, because the key is in the map even if the value is null. But instead is false for this scenario. Is this the expected behavior? If so, then how is different t

Re: isPropertyAvailable doesn't work as expected...

2006-06-15 Thread puneet arya
hi,    Y dnt you use join statement for this.[EMAIL PROTECTED] wrote: Hello,I have two simple queries which I am trying to combine usingbut it doesn't seem to work as expected.Query 1: SELECT requestid FROM users WHERE name = 'test'Query 2: SELECT count(*) FROM users WHERE name = 'test'IN XML:===

Re: isPropertyAvailable doesn't work as expected...

2006-06-15 Thread Jeff Butler
You'll have to do remapResults="true" in this case - because you are changing the result set in the same query. Jeff Butler   On 6/15/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hello,I have two simple queries which I am trying to combine using but it doesn't seem to work as expected. Query 1:

Re: isPropertyAvailable doesn't work as expected...

2006-06-15 Thread ibatis
Problem solved: use and . Aladin > > I have two simple queries which I am trying to combine using > but it doesn't seem to work as expected. > > Query 1: SELECT requestid FROM users WHERE name = 'test' > Query 2: SELECT count(*) FROM users WHERE name = 'test' > > IN XML: > === > cacheMode

isPropertyAvailable doesn't work as expected...

2006-06-15 Thread ibatis
Hello, I have two simple queries which I am trying to combine using but it doesn't seem to work as expected. Query 1: SELECT requestid FROM users WHERE name = 'test' Query 2: SELECT count(*) FROM users WHERE name = 'test' IN XML: === SELECT count(*) requestid FROM users WHERE name = 't