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