Data.DB.TDateTimeRec
[–] 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
- TDateTimeField
- TTimeField
- TDateField
- TSQLTimeStampField
- TDataSet
- TField
- TDateTime
- Longint
- Using Default Formatting for Numeric, Date, and Time Fields
- Converting Field Values