B
babyboom
Unregistered / Unconfirmed
GUEST, unregistred user!
with adotable do
begin
Close;
SQL.Clear;
SQL.add('select * from dict where 1=1 ');
if Edit1.text<>'' then
SQL.add('and cola='''+Edit1.text+''' ');
if Edit2.text<>'' then
SQL.add('and cola='''+Edit2.text+''' ');
if Edit3.text<>'' then
SQL.add('and cola='''+Edit3.text+''' ');
if Edit4.text<>'' then
SQL.add('and cola='''+Edit4.text+''' ');
Open;
end;
现在需要调用存储过程实现以上代码的功能,怎么实现??
begin
Close;
SQL.Clear;
SQL.add('select * from dict where 1=1 ');
if Edit1.text<>'' then
SQL.add('and cola='''+Edit1.text+''' ');
if Edit2.text<>'' then
SQL.add('and cola='''+Edit2.text+''' ');
if Edit3.text<>'' then
SQL.add('and cola='''+Edit3.text+''' ');
if Edit4.text<>'' then
SQL.add('and cola='''+Edit4.text+''' ');
Open;
end;
现在需要调用存储过程实现以上代码的功能,怎么实现??