Parameter styles supported for C and C++ routines
For C and C++ routines, the SQL parameter style is supported for procedures and functions, and the GENERAL and GENERAL WITH NULLS parameter styles are supported for only procedures.
It is strongly recommended that the parameter style SQL be used for all C and C++ routines. This parameter style supports NULL values, provides a standard interface for reporting errors, as well as supporting scratchpads and call types.
To specify the parameter style to be used for a routine, you must specify the PARAMETER STYLE clause in the CREATE statement for the routine at routine creation time.
The parameter style must be accurately reflected in the implementation of the C or C++ routine code.
For more information about these parameter styles refer to: "Syntax for passing parameters to C and C++ routines".