Data.SqlExpr.LoadParamListItems

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

extern DELPHI_PACKAGE void __fastcall LoadParamListItems(Data::Db::TParams* Params, System::Generics::Collections::TList__1<SPParamDesc*>* ProcParams);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Data.SqlExpr.pas
Data.SqlExpr.hpp
Data.SqlExpr Data.SqlExpr

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