FireDAC.Comp.DataSet.TFDDataSet.EndBatch

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

procedure EndBatch;

C++

void __fastcall EndBatch();

プロパティ

種類 可視性 ソース ユニット
procedure
function
public
FireDAC.Comp.DataSet.pas
FireDAC.Comp.DataSet.hpp
FireDAC.Comp.DataSet TFDDataSet

説明

バッチ更新後に、標準データセット機能を復元します。


EndBatch メソッドを使用して、BeginBatch を呼び出す前のとおり、標準データセット処理を再び有効にします。

 FDQuery1.BeginBatch;
 try
   FDQuery1.AppendRecord([...]);
   FDQuery1.AppendRecord([...]);
   FDQuery1.AppendRecord([...]);
   ......
 finally
   FDQuery1.EndBatch;
 end;

関連項目