Do
This command runs a routine as a procedure (as opposed to a function).
Usage |
DO ProcName [ WITH ParameterList ] [ IN FileName ] |
Parameter |
Value |
Meaning |
ProcName |
Name |
The procedure to execute. |
ParameterList |
List of expressions |
The actual parameters to pass to the procedure. |
FileName |
Name |
The name of a file containing the procedure. |
Example |
DO MyRtn WITH a,b,c && all passed by reference DO MyRtn WITH 3*x,(b),DATE() && all passed by value DO MyRtn WITH a,,c && omitted parameter |
See Also |