The CREATE FUNCTION statement provides clauses that specify the name and path of the function source code.
CREATE FUNCTION Clause | Description |
---|---|
EXTERNAL | Use the EXTERNAL clause when the function source is in the current or default directory on the client, and no other files need to be included. If the CREATE FUNCTION includes the SPECIFIC clause, then the source name is the same as the specific name; otherwise, the source name is the name that immediately follows the CREATE FUNCTION keywords. If the client is...
|
EXTERNAL NAME function_name | Use the EXTERNAL function_name clause when the function source is in the current or default directory on the client, and no other files need to be included. The source name is the same as function_name. If the client is...
|
EXTERNAL NAME 'string' | Use ' string ' to specify names and locations of the following:
You can also use 'string' to specify that the source or include files not be stored. If the client is...
|