FireDAC.Comp.BatchMove.TFDBatchMove.LogFileAction

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property LogFileAction: TFDLogFileAction read FLogFileAction write FLogFileAction default laNone;

C++

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

Properties

Type Visibility Source Unit Parent
property published
FireDAC.Comp.BatchMove.pas
FireDAC.Comp.BatchMove.hpp
FireDAC.Comp.BatchMove TFDBatchMove

Description

Use the LogFileAction property to control data moving logging.

The LogFileAction is set to laNone by default which means that there is no logging. To enable logging set the LogFileAction property value to laCreate or laAppend.

TFDLogFileAction options:

Name Description
laNone The logging is disabled. This is the default value.
laCreate Enables logging and creates a new log file when TFDBatchMove is executed.
laAppend Enables logging and appends the new log to the existing log file when TFDBatchMove is executed.

See Also