Data.Win.ADODB.TParameters.Items

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Items[Index: Integer]: TParameter read GetItem write SetItem; default;

C++

__property TParameter* Items[int Index] = {read=GetItem, write=SetItem/*, default*/};

Properties

Type Visibility Source Unit Parent
property public
Data.Win.ADODB.pas
Data.Win.ADODB.hpp
Data.Win.ADODB TParameters

Description

Contains the collection of parameters.

Items is a collection of TParameter objects. Each TParameter object in the collection represents an individual parameter. Use Items to access a particular parameter.

Index indicates the specific parameter to access. Index identifies the parameter's position in the collection of parameters, in the range 0 to Count - 1.

See Also