FireDAC.Phys.SQLite.TFDSQLiteValidate.Options

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Options: TFDSQLiteValidateOptions read FOptions write FOptions default [voCheckIndexes];

C++

__property TFDSQLiteValidateOptions Options = {read=FOptions, write=FOptions, default=1};

Properties

Type Visibility Source Unit Parent
property published
FireDAC.Phys.SQLite.pas
FireDAC.Phys.SQLite.hpp
FireDAC.Phys.SQLite TFDSQLiteValidate

Description

Specifies the validation options.

Use the Options property to specify additional options controlling the validation task. The default value is [voCheckIndexes].

The Options are used only by the CheckOnly method.

Option Description

voCheckIndexes

When included, CheckOnly also performs the validation of indexes for matching the table data. This corresponds to the PRAGMA integrity_check.

When excluded, this corresponds to the PRAGMA quick_check.

See Also