FireDAC.Comp.Client.TFDCustomCommand.Values

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Values[const AParamNames: String]: Variant read GetValues write SetValues; default;

C++

__property System::Variant Values[const System::UnicodeString AParamNames] = {read=GetValues, write=SetValues/*, default*/};

Properties

Type Visibility Source Unit Parent
property public
FireDAC.Comp.Client.pas
FireDAC.Comp.Client.hpp
FireDAC.Comp.Client TFDCustomCommand

Description

Provides access to the values of all parameters in the command.

The Values property gets / sets the values of the parameters in a command. AParamNames represents the only parameter name or the list of parameter names separated by ';' to read from or write to.

Values accepts and returns a Variant, so it can handle and convert parameters of any data type. Because Values is the default property for TFDCommand, the property name may be omitted when referencing this property.

See Also