FireDAC.Phys.ASA.TFDASABackup.Flags

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: published
Source:
FireDAC.Phys.ASA.pas
FireDAC.Phys.ASA.hpp
Unit: FireDAC.Phys.ASA
Parent: TFDASABackup

Delphi

property Flags: TASABackupFlags read FFlags write FFlags default [];

C++

__property Firedac::Phys::Asawrapper::TASABackupFlags Flags = {read=FFlags, write=FFlags, default=0};

Description

Specifies additional backup flags.

Use the Flags property to specify additional backup flags.

Value Meaning

bfBackupDB

Backs up the database file or not. It corresponds to -d .

bfBackupLog

Backs up the transaction log file or not. It corresponds to -t.

bfNoConfirm

Operates with or without confirmation. It corresponds to -y.

bfQuiet

Operates without printing messages, or prints messages. It corresponds to -q.

bfRenameLog

Renames the transaction log. It corresponds to -r.

bfTruncateLog

Deletes the transaction log. It corresponds to -x .

bfRenameLocalLog

Renames the local backup of the transaction log. It corresponds to -n.

bfServerBackup

Creates an image backup on the server using the BACKUP DATABASE statement. It corresponds to -s.

For more details about the options above, see http://infocenter.sybase.com/help/.

See Also