Data.DB.TParam.AsSQLTimeStamp

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: TParam

Delphi

property AsSQLTimeStamp: TSQLTimeStamp read GetAsSQLTimeStamp write SetAsSQLTimeStamp;

C++

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

Description

Specifies the value of the parameter when it represents an SQL timestamp field.

Set AsSQLTimeStamp to assign the value for an SQL timestamp field to the parameter. Setting AsSQLTimeStamp sets the DataType property to ftTimeStamp.

Read the AsSQLTimeStamp property to determine the value that was assigned to an output parameter, represented as an SQLTimeStamp record (Delphi) or structure (C++). The value of the parameter is converted to an SQLTimeStamp record or structure if possible.

See Also