FireDAC.Comp.Client.TFDCommand.Overload

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: published
Source:
FireDAC.Comp.Client.pas
FireDAC.Comp.Client.hpp
Unit: FireDAC.Comp.Client
Parent: TFDCommand

Delphi

property Overload;

C++

__property Overload = {default=0};

Description

Oracle stored procedure overload index.

FireDAC.Comp.Client.TFDCommand.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