host_integer
|
A host variable that specifies the maximum number of host array elements processed. Must be declared as PIC S9(4) COMP-5 or PIC S9(9) COMP-5.
|
result_hvar
|
A host variable to receive the procedure result.
|
stored_procedure_name
|
The name of the stored procedure.
|
parameter
|
A literal, a DECLARE CURSOR statement1, or a host variable parameter of the form:
[keyword=]:param_hvar [IN | INPUT |
INOUT | OUT | OUTPUT]
where:
|
keyword
|
The formal parameter name for a keyword parameter. Keyword parameters can be useful as an aid to readability and where the server supports default parameter values and optional parameters.
|
param_hvar
|
A host variable.
|
IN
|
An input parameter.
|
INPUT
|
An input parameter (default).
|
INOUT
|
An input/output parameter.
|
OUT
|
An output parameter.
|
OUTPUT
|
An output parameter.
|
1 Specify DECLARE CURSOR only with Oracle 8 or later and for stored procedures that return a result set. The use of DECLARE CURSOR unbinds the corresponding parameter.
|