IBX.IBQuery.TIBQuery.Params

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Params: TParams read GetParams write SetParamsList stored False;

C++

__property Data::Db::TParams* Params = {read=GetParams, write=SetParamsList, stored=false};

Properties

Type Visibility Source Unit Parent
property published
IBX.IBQuery.pas
IBX.IBQuery.hpp
IBX.IBQuery TIBQuery

Description

Contains the parameters for a query's SQL statement.

Access Params at runtime to view and set parameter names, values, and data types dynamically (at design time use the collection editor for the Params property to set parameter information). Params is a zero-based array of TParams parameter records. Index specifies the array element to access.

Note: An easier way to set and retrieve parameter values when the name of each parameter is known is to call ParamByName. ParamByName cannot, however, be used to change a parameter's data type or name.