D
delphi英雄
Unregistered / Unconfirmed
GUEST, unregistred user!
我想写一个方法:ParamsToSQL(ds:TClientDataSet);是想从ClientDataSet中
CommandText的带参数的SQL语句和其参数Params中撮出真实的SQL语句来,例如:
ClientDataSet1.CommandText:='Select * from Table1 where aa=:QQ';
clientdataset.fieldbyname('QQ').asstring:='中国人';
ParamsToSQL(ClientDataSet1);
得到真实的SQL语句结果:SQL:='Select * from Table1 where aa=''中国人''';
那位高手能给些思路?谢谢!
CommandText的带参数的SQL语句和其参数Params中撮出真实的SQL语句来,例如:
ClientDataSet1.CommandText:='Select * from Table1 where aa=:QQ';
clientdataset.fieldbyname('QQ').asstring:='中国人';
ParamsToSQL(ClientDataSet1);
得到真实的SQL语句结果:SQL:='Select * from Table1 where aa=''中国人''';
那位高手能给些思路?谢谢!