Bde.DBTables.TStoredProc.Params

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Params: TParams read FParams write SetParamsList stored False;

C++

__property Data::Db::TParams* Params = {read=FParams, write=SetParamsList, stored=false};

Properties

Type Visibility Source Unit Parent
property published
Bde.DBTables.pas
Bde.DBTables.hpp
Bde.DBTables TStoredProc

Description

Stores the input and output parameters for a stored procedure.

Access Params at runtime to set input parameter names, values, and data types dynamically (at design time use the Parameters editor to set parameter information). Params is an array of parameter values.

An application can also access Params after executing a stored procedure to retrieve the output parameters returned to the procedure by the server.

See Also