FireDac中Fdquery可否像Adoquery一样进行UpdateBatch操作
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了FireDac中Fdquery可否像Adoquery一样进行UpdateBatch操作相关的知识,希望对你有一定的参考价值。
参考技术A ADOQuery1.SQL.Clear;showmessage(File_Feature);
sql:= 'select * from MediaInfo where 特征="'+File_Feature+'"';
ADOQuery1.SQL.Add(sql);
ADOQuery1.Open;
if ADOQuery1.recordCount>0 then
begin
while not ADOQuery1.eof do
begin
ADOQuery1.edit;
ADOQuery1.fieldByname('时间').value:=‘1as’;
ADOQuery1.post;
ADOQuery1.next;
end;
end;
或者干脆直接点
ADOQuery1.SQL.Clear;
sql:= 'update MediaInfo set 时间='''+'1as'+'''+where 特征="'+File_Feature+'"';
ADOQuery1.SQL.Add(sql);
ADOQuery1.execsql;
以上是关于FireDac中Fdquery可否像Adoquery一样进行UpdateBatch操作的主要内容,如果未能解决你的问题,请参考以下文章