Hi I have a problem with a filter on a dataset.

( (UnitName like 'd%') or ((Unitsid = 3) or (Unitsid = 4))) is ok

but

( (UnitName like 'd%') and ((Unitsid = 3) or (Unitsid = 4))) generates an error 'arguments are of the wrong type are out of range or conflict with each other.'

I have 2 level filtering one is the like part The other one is a set of items in a group. ((Unitsid = 3) or (Unitsid = 4))

Im using a TADOQuery and the rest of that family to contactt the SQLserver database. In my application I use a disconnected dataset but in a small program a connected data set both with the same result.

Any suggestions?

JVDN

link|improve this question
As I have found on the Embarcadero site there are some strange ways that the filter option is working. Jim Fleming skrev: Why does the following filter text give an exception when I set Filtered ??? Filter_Text := '((Priority=1) OR (Priority=2)) AND (Status=2)'; Filtered := True; Don't know why but you have to write the filter like this (Priority=1 AND Status=2) OR (Priority=2 AND Status=2) /Micke comment part 1 – JVDN Sep 23 '11 at 12:43
1  
However, since I have 4 filter conditions (Status, Priority, Category and Subject) with respectively (5, 5, >20, >???!!) possible values, with multiselect, it would be unwieldy to have to elaborate all possible combinations of the various selected condition values. Instead, I am now filtering in the OnFilterRecord event of the TADOQuery. It works as required. BTW, in a quick test with BDE, my initial filter condition worked correctly, but with ADO, no. Your combinatorial-based version works in both ADO and BDE. JF – JVDN Sep 23 '11 at 12:44
[see the post ][1] [1]: forums.embarcadero.com/thread.jspa?messageID=27642&#27642 Thanks JVDN – JVDN Sep 23 '11 at 12:45
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.