Tom,

Did you try the addWhere in there where object?
You can create n "where" objects and append them to the main "query" object.
 
João Fernandes

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Tom Chiverton
Sent: segunda-feira, 25 de Setembro de 2006 12:12
To: [email protected]
Subject: [Reactor for CF] Nested and/or in OO queries

I'm using Query.getWhere().setMode() to add 'and' or 'or' clauses, but need
a 
bit more control.

I want to be able to say
        where
        ( a or b or c) 
        and
        ( x or y )
but Reactor flattens this to
        where
        a or b or c 
        and
        x or y 
which is a totally different thing.

My code says:
                q.getWhere().setMode('Or');

q.getWhere().isEqual('cases','clientCode',listGetAt(arguments.clientIDs,3));

q.getWhere().isEqual('cases','clientCode',listGetAt(arguments.clientIDs,2));

q.getWhere().isEqual('cases','clientCode',listGetAt(arguments.clientIDs,1));
                q.getWhere().setMode('And');

q.getWhere().isLike('cases','debtorName',arguments.searchTerms.debtorname);
                q.getWhere().setMode('Or');

q.getWhere().isLike('cases','debtorName2',arguments.searchTerms.debtorname);

-- 
Tom Chiverton
Helping to appropriately optimise total architectures

****************************************************

This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and
Wales under registered number OC307980 whose registered office address is at
St James's Court Brown Street Manchester M2 2JF.  A list of members is
available for inspection at the registered office. Any reference to a
partner in relation to Halliwells LLP means a member of Halliwells LLP.
Regulated by the Law Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may
be confidential or legally privileged.  If you are not the addressee you
must not read it and must not use any information contained in nor copy it
nor inform any person other than Halliwells LLP or the addressee of its
existence or contents.  If you have received this email in error please
delete it and notify Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.



-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- --
Reactor for ColdFusion Mailing List
[email protected]
Archives at: http://www.mail-archive.com/reactor%40doughughes.net/
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- --



-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Reactor for ColdFusion Mailing List
[email protected]
Archives at: http://www.mail-archive.com/reactor%40doughughes.net/
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

Reply via email to