FireDAC.Comp.Client.TFDMetaInfoCommand.Overload

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Overload: Word read FOverload write SetOverload default 0;

C++

__property Overload = {default=0};

Properties

Type Visibility Source Unit Parent
property published
FireDAC.Comp.Client.pas
FireDAC.Comp.Client.hpp
FireDAC.Comp.Client TFDMetaInfoCommand

Description

Oracle stored procedure overload index.

FireDAC.Comp.Client.TFDMetaInfoCommand.Overload inherits from FireDAC.Comp.Client.TFDCustomCommand.Overload. All content below this line refers to FireDAC.Comp.Client.TFDCustomCommand.Overload.

Oracle stored procedure overload index.

The Overload property specifies the Oracle packaged stored procedure overload index. It has no meaning for other DBMSs.

Example

ADCommand1.CommandKind := skStoredProc;
ADCommand1.CommandText.Text := 'DBMS_SQL.PARSE';
ADCommand1.Overload := 1;

See Also