FireDAC.Comp.Client.TFDCustomCommand.Overload

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

property Overload: Word read FOverload write SetOverload default 0;

C++

__property System::Word Overload = {read=FOverload, write=SetOverload, default=0};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
property public
FireDAC.Comp.Client.pas
FireDAC.Comp.Client.hpp
FireDAC.Comp.Client TFDCustomCommand

Beschreibung

Überladungsindex von gespeicherten Oracle-Prozeduren.

Die Eigenschaft Overload gibt den Überladungsindex von gepackten, gespeicherten Oracle-Prozeduren an. Diese Eigenschaft hat keine Bedeutung für andere DBMSs.

Beispiel

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

Siehe auch