Data.Win.ADODB.TADOConnection.GetProcedureNames

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure GetProcedureNames(List: TStrings);

C++

void __fastcall GetProcedureNames(System::Classes::TStrings* List);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Data.Win.ADODB.pas
Data.Win.ADODB.hpp
Data.Win.ADODB TADOConnection

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.

See Also