Sets the in/out parameter type of this stored-procedure parameter.
Syntax
void setParamIOType(String paramIOType)
Parameters
Notes
The in/out parameter type indicates how the stored procedure uses the parameter. It can be any of the following:
An IN parameter is input only; that is, the stored procedure accepts its value as input but does not use the parameter to return a value. For an IN parameter, set the in/out parameter type to "IN".
An INOUT parameter is input and output; that is, the stored procedure accepts its value as input and also uses the parameter to return a value. For an INOUT parameter, set the in/out parameter type to "INOUT".
An OUT parameter is output only; that is, the stored procedure does not read its value as input but does use the parameter to return a value. For an OUT parameter, set the in/out parameter type to "OUT".
See also