Data.SqlExpr.FreeProcParams

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure FreeProcParams(var ProcParams: TProcParamList);

C++

extern DELPHI_PACKAGE void __fastcall FreeProcParams(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

Frees a list of procedure parameters that is allocated by GetProcedureParams.

Use FreeProcParams to free a list of stored procedure parameters after using them. FreeProcParams takes a single parameter, ProcParams, which is a list of parameter information that was returned from a call to the GetProcedureParams method of TSQLConnection. It frees all of the parameter structures in the list, and then frees the list itself, changing the parameter that was passed in to nil (Delphi) or NULL (C++).

See Also