A
apzhang
Unregistered / Unconfirmed
GUEST, unregistred user!
我在DELPHI6(SP2)下用TADODataSet的Filter进行过滤,我有如下过滤条件:
条件1. 雇员='TC001' or 部门='00000' and 客户名称='Acer'
系统提示错误(应用程序使用的参数或者类型不正确,或者不在可以接受
的范围之内,要不就是与其他数据冲突)
我改变条件为:
条件2. 雇员='TC001' and 部门='00000' and 客户名称='Acer' 或
条件3. 雇员='TC001' or 部门='00000' or 客户名称='Acer' 或
条件4. 雇员='TC001' and 部门='00000' or 客户名称='Acer'
条件5. (雇员='TC001' and 客户名称='Acer') or ( 部门='00000' and 客户名称='Acer')
均不会出现上述错误, 但在程序中一定要用条件一, 请各位指点!!!
条件1. 雇员='TC001' or 部门='00000' and 客户名称='Acer'
系统提示错误(应用程序使用的参数或者类型不正确,或者不在可以接受
的范围之内,要不就是与其他数据冲突)
我改变条件为:
条件2. 雇员='TC001' and 部门='00000' and 客户名称='Acer' 或
条件3. 雇员='TC001' or 部门='00000' or 客户名称='Acer' 或
条件4. 雇员='TC001' and 部门='00000' or 客户名称='Acer'
条件5. (雇员='TC001' and 客户名称='Acer') or ( 部门='00000' and 客户名称='Acer')
均不会出现上述错误, 但在程序中一定要用条件一, 请各位指点!!!