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
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
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
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:===
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:
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
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