Data.SqlExpr.LoadParamListItems

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: public
Source:
Data.SqlExpr.pas
Data.SqlExpr.hpp
Unit: Data.SqlExpr
Parent: Data.SqlExpr

Delphi

procedure LoadParamListItems(Params: TParams; ProcParams: TProcParamList);

C++

extern DELPHI_PACKAGE void __fastcall LoadParamListItems(Data::Db::TParams* Params, TProcParamList* ProcParams);

Description

Fills a TParams object with information from a list of parameter descriptors.

Call LoadParamListItems to convert the list of parameter descriptors that is returned from the GetProcedureParams method of TSQLConnection to a collection of TParam objects.

Params is an empty TParams collection that the procedure fills with information from the list of parameter descriptors.

ProcParams is the list of parameter descriptors that GetProcedureParams returns.

See Also