Datasnap.DBClient.TDataPacketFormat
[–] Properties | |
---|---|
Type: enum | |
Visibility: public | |
Source: Datasnap.DBClient.pas Datasnap.DBClient.hpp
| |
Unit: Datasnap.DBClient | |
Parent: Datasnap.DBClient |
Delphi
TDataPacketFormat = (dfBinary, dfXML, dfXMLUTF8);
C++
enum DECLSPEC_DENUM TDataPacketFormat : unsigned char { dfBinary, dfXML, dfXMLUTF8 };
Description
TDataPacketFormat indicates how information is encoded in a data packet or delta packet.
TDataPacketFormat indicates how a provider encodes database information into data packets. The following table lists the possible values:
Value | Meaning |
---|---|
dfBinary |
Information is encoded in binary format. |
dfXML |
Information is encoded in XML, with extended characters encoded using an escape sequence. |
dfXMLUTF8 |
Information is encoded in XML, with extended characters represented using UTF8. |