FireDAC.Phys.ADS.TFDADSUtilityMode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TFDADSUtilityMode = (umEncrypt, umDecrypt, umPack, umZap, umReindex, umRecall);

C++

enum DECLSPEC_DENUM TFDADSUtilityMode : unsigned int { umEncrypt, umDecrypt, umPack, umZap, umReindex, umRecall };

Properties

Type Visibility Source Unit Parent
enum public
FireDAC.Phys.ADS.pas
FireDAC.Phys.ADS.hpp
FireDAC.Phys.ADS FireDAC.Phys.ADS

Description

Specifies the database table utilities values.

TFDADSUtilityMode can have one of the following values:

Value Meaning

umEncrypt

Use it if you want to encrypt table rows, enable the encryption for the table, and assign a password.

umDecrypt

Use it if you want to decrypt table rows, disable the encryption for the table, and remove the password.

umPack

Use it if you want to remove the deleted records from a table and re-index the table.

umZap

Use it if you want to remove all the records from a table and re-index the table.

umReindex

Use it if you want to rebuild all open indexes associated with the given table.

umRecall

Use it if you want to recall all deleted records in a table, pack the table, and re-index the table.

See Also