Returns a list of stored procedures from the server.
procedure GetStoredProcNames(List: TStrings; AllProcs: boolean = False); virtual;
Call the GetStoredProcNames method to get the names of available stored procedures and functions. GetStoredProcNames populates a string list with the names of stored procs in the database. If AllProcs = True, the procedure returns to the List parameter the names of the stored procedures that belong to all schemas; otherwise, List will contain the names of functions that belong to the current schema.
Note: Any contents already in the target string list object are eliminated and overwritten by data produced by GetStoredProcNames.