Creating a subfunction v16
The FUNCTION
clause specified in the declaration section defines and names a subfunction local to that block.
The term block refers to the SPL block structure consisting of an optional declaration section, a mandatory executable section, and an optional exception section. Blocks are the structures for standalone procedures and functions, anonymous blocks, subprograms, triggers, packages, and object type methods.
The phrase the identifier is local to the block means that the identifier (that is, a variable, cursor, type, or subprogram) is declared in the declaration section of that block and is therefore accessible by the SPL code in the executable section and optional exception section of that block.
Declaring a subfunction
Where:
name
is the identifier of the subfunction.parameters
is a list of formal parameters.data_type
is the data type of the value returned by the function’sRETURN
statement.PRAGMA AUTONOMOUS_TRANSACTION
is the directive that sets the subfunction as an autonomous transaction.declarations
are variable, cursor, type, or subprogram declarations. If subprogram declarations are included, they must be declared after all other variable, cursor, and type declarations.statements
are SPL program statements. TheBEGIN - END
block can contain anEXCEPTION
section.
Example: Recursive subfunction
This example shows the use of a recursive subfunction:
The following is the output: