Returns list of routines available at the moment in the current database. Syntax: GetRoutinesNames(Pattern: string; List: TStrings; SrtType: TMySQLSelectRoutinesType = srtAll); Parameters: Pattern Use Pattern parameter to set wildcard matching for functions names. List A string list object, created and maintained by the application, in which the functions names will be return to. SrtType Specifies which type of routines will be returns. Description: Call to GetRoutinesNames to obtain available routines list. Strings are sorted by names. Example: var str:string; list:TStringList; i:integer; |