Data.DB.TParams.GetParamList

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure GetParamList(List: TList<TParam>; const ParamNames: string); overload;
procedure GetParamList(List: TList; const ParamNames: string); overload; deprecated 'Use overloaded method instead';

C++

void __fastcall GetParamList(System::Generics::Collections::TList__1<TParam*>* List, const System::UnicodeString ParamNames)/* overload */;
void __fastcall GetParamList _DEPRECATED_ATTRIBUTE1("Use overloaded method instead") (System::Classes::TList* List, const System::UnicodeString ParamNames)/* overload */;

Properties

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

Description

Fills a TList object with the TParam objects specified by name.

Use GetParamList to obtain a subset of the field parameters in the Items list that have been identified by name. ParamNames is a string giving the names of all field parameters of interest. Multiple parameter names are separated by semicolons (;).

GetParamList adds the field parameters to List in the order they appear in ParamNames. If ParamNames includes a name that does not match any of the field parameters in Items, an exception is raised.

See Also