Data.SqlExpr.TCustomSQLDataSet.ProcParams

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ProcParams: TProcParamList read GetProcParams write FProcParams;

C++

__property System::Generics::Collections::TList__1<SPParamDesc*>* ProcParams = {read=GetProcParams, write=FProcParams};

Properties

Type Visibility Source Unit Parent
property protected
Data.SqlExpr.pas
Data.SqlExpr.hpp
Data.SqlExpr TCustomSQLDataSet

Description

ProcParams lists the parameter descriptors obtained from the server for any stored procedure parameters.

When the SQL dataset represents a stored procedure, it fetches information about stored procedure parameters from the server as a list of parameter descriptors. It stores this list as the value of ProcParams.

Applications never use the protected ProcParams directly. Instead, the information from the list is used to initialize the Params property.

See Also