Bde.DBTables.TStoredProc.Params

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: published
Source:
Bde.DBTables.pas
Bde.DBTables.hpp
Unit: Bde.DBTables
Parent: TStoredProc

Delphi

property Params: TParams read FParams write SetParamsList stored False;

C++

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

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