FireDAC.Comp.BatchMove.TFDBatchMove.LogFileAction

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: published
Source:
FireDAC.Comp.BatchMove.pas
FireDAC.Comp.BatchMove.hpp
Unit: FireDAC.Comp.BatchMove
Parent: TFDBatchMove

Delphi

property LogFileAction: TFDLogFileAction read FLogFileAction write FLogFileAction default laNone;

C++

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

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