Data.DB.TField.AsSQLTimeStampOffset

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property AsSQLTimeStampOffset: TSQLTimeStampOffset read GetAsSQLTimeStampOffset write SetAsSQLTimeStampOffset;

C++

__property Data::Sqltimst::TSQLTimeStampOffset AsSQLTimeStampOffset = {read=GetAsSQLTimeStampOffset, write=SetAsSQLTimeStampOffset};

Properties

Type Visibility Source Unit Parent
property public
Data.DB.pas
Data.DB.hpp
Data.DB TField

Description

Represents the field's value as a highly accurate date-time value.

Use AsSQLTimeStampOffset to read the value of the field's data into a TSQLTimeStampOffset record (Delphi) or structure (C++), or to assign a TSQLTimeStampOffset value to the contents of the field. TField does not support TSQLTimeStampOffset values and raises an exception when an attempt is made to get or set the AsSQLTimeStampOffset property.

Descendants of TField that represent SQL timestamps with highly accurate fields or that support conversions between the field's Value property and TSQLTimeStampOffset override AsSQLTimeStampOffset to read and write the value of the field as a TSQLTimeStampOffset record (Delphi) or structure (C++).

See Also