Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 » SQL Anywhere Server - SQL Usage » Stored Procedures and Triggers » Using procedures, triggers, and batches » The structure of procedures and triggers

 

Passing parameters to functions

User-defined functions are not invoked with the CALL statement, but are used in the same manner that built-in functions are. For example, the following statement uses the FullName function defined in Creating user-defined functions to retrieve the names of employees:

To list the names of all employees
Name
Fran Whitney
Matthew Cobb
Philip Chin
Julie Jordan
...
Notes
  • Default parameters can be used in calling functions. However, parameters cannot be passed to functions by name.

  • Parameters are passed by value, not by reference. Even if the function changes the value of the parameter, this change is not returned to the calling environment.

  • Output parameters cannot be used in user-defined functions.

  • User-defined functions cannot return result sets.