FireDAC.Comp.BatchMove.TFDBatchMove.LogFileAction

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

property LogFileAction: TFDLogFileAction read FLogFileAction write FLogFileAction default laNone;

C++

__property TFDLogFileAction LogFileAction = {read=FLogFileAction, write=FLogFileAction, default=0};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
property published
FireDAC.Comp.BatchMove.pas
FireDAC.Comp.BatchMove.hpp
FireDAC.Comp.BatchMove TFDBatchMove


Beschreibung

Mit der Eigenschaft LogFileAction steuern Sie die Protokollierung der Datenbewegung.

Die Eigenschaft LogFileAction ist standardmäßig auf laNone gesetzt, was bedeutet, dass keine Protokollierung erfolgt. Setzen Sie die Eigenschaft LogFileAction auf laCreate oder laAppend, um die Protokollierung zu aktivieren.

Optionen von TFDLogFileAction:

Name Beschreibung
laNone Die Protokollierung ist deaktiviert. Das ist der Vorgabewert.
laCreate Aktiviert die Protokollierung und erstellt eine neue Datei, wenn TFDBatchMove ausgeführt wird.
laAppend Aktiviert die Protokollierung und hängt ein neues Protokoll an die vorhandene Protokolldatei an, wenn TFDBatchMove ausgeführt wird.

Siehe auch