FireDAC.Stan.Option.TFDResourceOptions.UnifyParams

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property UnifyParams: Boolean read GetUnifyParams

C++

__property bool UnifyParams = {read=GetUnifyParams, write=SetUnifyParams, stored=IsUPS, default=0};

Properties

Type Visibility Source Unit Parent
property published
FireDAC.Stan.Option.pas
FireDAC.Stan.Option.hpp
FireDAC.Stan.Option TFDResourceOptions

Description

Controls the unification of a stored procedure parameters.

Use the UnifyParams property to specify whether FireDAC should unify the stored procedure parameters or not. By default, the UnifyParams property is set to False

The unification includes the following:

  • Removing the special symbols from the stored procedure parameter names. At the moment, FireDAC deletes the '@' prefix from the Microsoft SQL Server and the Sybase SQL Anywhere parameter names. The other DBMSs supported by FireDAC do not use special symbols.
  • Removing the special parameters. At the moment, FireDAC deletes the 'RESULT' parameter from the Microsoft SQL Server and the Sybase SQL Anywhere stored procedure parameters set. The other DBMSs supported by FireDAC do not use special parameters.
  • The result parameter will be named "RESULT". Depending on the DBMS, the stored procedure "result" parameter may be unnamed or named differently.

See Also