IBX.IBStoredProc.TIBStoredProc.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.IBStoredProc.pas
IBX.IBStoredProc.hpp
IBX.IBStoredProc TIBStoredProc

Description

Stores the input and output parameters for a stored procedure.

Access Params at runtime to set input parameter names, values, and data types dynamically (at design time use the Parameters editor to set parameter information). Params is an array of parameter values.

An application can also access Params after executing a stored procedure to retrieve the output parameters returned to the procedure by the server.