FireDAC.Stan.Intf.TFDStorageFormat
Delphi
TFDStorageFormat = (sfAuto, sfXML, sfBinary, sfJSON, sfFreeFormJSON);
C++
enum DECLSPEC_DENUM TFDStorageFormat : unsigned int { sfAuto, sfXML, sfBinary, sfJSON, sfFreeFormJSON };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | FireDAC.Stan.Intf.pas FireDAC.Stan.Intf.hpp |
FireDAC.Stan.Intf | FireDAC.Stan.Intf |
Description
Specifies the data storage format.
TFDStorageFormat specifies data storage format modes.
| Name | Description |
|---|---|
| sfAuto | Automatically determines the type based on file extension. Default value. It is not supported for streams. |
| sfBinary | Binary storage of data |
| sfFreeFormJSON | Free-form JSON storage of data. Must include Data.DBJson into the uses clause. |
| sfJSON | JSON storage of data |
| sfXML | XML storage of data |