FireDAC.Stan.Intf.TFDStorageFormat

From RAD Studio API Documentation
Jump to: navigation, search

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

See Also