Data.DB.TDateTimeRec

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
record
struct
Visibility: public
Source:
Data.DB.pas
Data.DB.hpp
Unit: Data.DB
Parent: Data.DB

Delphi

TDateTimeRec = record

C++

struct DECLSPEC_DRECORD TDateTimeRec
{
public:
    union
    {
        struct
        {
            TDateTimeAlias DateTime;
        };
        struct
        {
            int Time;
        };
        struct
        {
            int Date;
        };
    };
};

Description

TDateTimeRec represents a record holding date-time information.

TDateTimeRec is a record that holds date-time information. TFieldType can take one of the following values: ftDate, ftTime (in both cases the result is of Longint type), or ftDateTime (in this case, the result is of TDateTime type).

See Also

Code Examples