SHOW FUNCtions
SHOW FUNCtions [name]
This command lists all user-defined external and stored functions declared in the current database.External functions are those defined and coded in various UDF libraries.
The second form of the command shows the details of a specific function.
SQL> show functions; ADDDAY ADDHOUR ... SQL> show function addyear; Function ADDYEAR: Function library is fbudf Entry point is addYear Returns TIMESTAMP Argument 1: TIMESTAMP Argument 2: INTEGER
Since Firebird 5.0, isql
lists functions and packaged functions in the same way, where the latter are displayed in the form <package-name>.<function-name>
.Isql
of Firebird 3.0 and 4.0 displayed functions and packaged functions differently.