Data.DB.TSQLTimeStampField.Value

From RAD Studio API Documentation
Jump to: navigation, search

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

Delphi

property Value: TSQLTimeStamp read GetAsSQLTimeStamp write SetAsSQLTimeStamp;

C++

__property Data::Sqltimst::TSQLTimeStamp Value = {read=GetAsSQLTimeStamp, write=SetAsSQLTimeStamp};

Description

Represents the value of the data in the SQL timestamp field.

Use Value to read data directly from and write data directly to an SQL timestamp field component at runtime. TSQLTimeStampField components store and manipulate their data as TSQLTimeStamp values. Thus, for SQL timestamp fields, the Value property is the same as the AsSQLTimeStamp property.

See Also