Data.SqlExpr.TCustomSQLDataSet.ParamByName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function ParamByName(const Value: string): TParam;

C++

Data::Db::TParam* __fastcall ParamByName(const System::UnicodeString Value);

Properties

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

Description

Locates a parameter in the Params property collection.

Call ParamByName to access a specific parameter object, given its name. Value is the name of the parameter.

ParamByName is primarily used to set a parameter's value at runtime.

See Also