Data.Win.ADODB.TADOConnection.GetProcedureNames
| [–] Properties | |
|---|---|
| Type: procedure function
| |
| Visibility: public | |
| Source: Data.Win.ADODB.pas Data.Win.ADODB.hpp
| |
| Unit: Data.Win.ADODB | |
| Parent: TADOConnection | |
Delphi
procedure GetProcedureNames(List: TStrings);
C++
void __fastcall GetProcedureNames(System::Classes::TStrings* List);
Description
Populates a string list with the names of stored procedures in the database.
Call GetProcedureNames to retrieve a list of stored procedures in the associated database. The names of the stored procedures are put into the already-existing string list object specified in the List parameter.
ADOConnection1.GetProcedureNames(ListBox1.Items);
ADOConnection1->GetProcedureNames(ListBox1->Items);
Note: Any contents already in the target string list object are eliminated and overwritten by the data produces by GetProcedureNames.