D
djf813
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TfrmLogin.btn_OKClick(Sender: TObject);
var
a,b:string;
begin
query1.close;
query1.sql.clear;
query1.sql.add('update kw set cjf=''1'' where gh='''+a+''' and bh='''+b+'''');
query1.execsql;
end;
end;
在执行过程中CJF字段有时有个别记录没有更新,而SQL写成
query1.sql.add('update kw set cjf=''1'' where gh='''+a+''' and bh='+b);
后问题解决,请问为什么add语句要这么写?
2.我把程序改用ADO后,为什么速度慢的让我无法忍受,听说ADO速度
很快的,为什么我用这么慢?
var
a,b:string;
begin
query1.close;
query1.sql.clear;
query1.sql.add('update kw set cjf=''1'' where gh='''+a+''' and bh='''+b+'''');
query1.execsql;
end;
end;
在执行过程中CJF字段有时有个别记录没有更新,而SQL写成
query1.sql.add('update kw set cjf=''1'' where gh='''+a+''' and bh='+b);
后问题解决,请问为什么add语句要这么写?
2.我把程序改用ADO后,为什么速度慢的让我无法忍受,听说ADO速度
很快的,为什么我用这么慢?