S
shgproduct
Unregistered / Unconfirmed
GUEST, unregistred user!
adoquery能否实现这样的功能:
SQL语句:
select * from ct01
where (ms02 = :ms02 or :ms02 = '$$$')
查询语句:
adoquery1.Close;
if trim(edit1.Text)<>'' then
adoquery1.Parameters.ParamValues['ms02']:=trim(edit1.Text)
else
adoquery1.Parameters.Parambyname('ms02').Value:='$$$';
adoquery1.Open;
注:用query组件能实现上述的查询功能,不知在adoquery中为什么实现不了?
SQL语句:
select * from ct01
where (ms02 = :ms02 or :ms02 = '$$$')
查询语句:
adoquery1.Close;
if trim(edit1.Text)<>'' then
adoquery1.Parameters.ParamValues['ms02']:=trim(edit1.Text)
else
adoquery1.Parameters.Parambyname('ms02').Value:='$$$';
adoquery1.Open;
注:用query组件能实现上述的查询功能,不知在adoquery中为什么实现不了?