API:Data.DB.TDateTimeRec
Delphi
TDateTimeRec = record
case TFieldType of
ftDate: (Date: Integer);
ftTime: (Time: Integer);
ftDateTime: (DateTime: TDateTimeAlias);
end;
C++
struct DECLSPEC_DRECORD TDateTimeRec
{
public:
union
{
struct
{
TDateTimeAlias DateTime;
};
struct
{
int Time;
};
struct
{
int Date;
};
};
};
Propriétés
| Type | Visibilité | Source | Unité | Parent |
|---|---|---|---|---|
record struct |
public | Data.DB.pas Data.DB.hpp |
Data.DB | Data.DB |
Description
Embarcadero Technologies ne possède pas d'informations supplémentaires pour le moment. Veuillez nous aider à documenter cette rubrique en utilisant la page Discussion !