Oracle Objects for OLE C++ Class Library Release 8.1.7 Part Number A85258-01 |
|
name
| The parameter name.
|
value
| The initial value of the parameter.
|
iotype
| Specifies whether this parameter is an input variable, an output variable, or
both. The value should be one of:
· OPARAMETER_INVAR // This should be used for input variables only. · OPARAMETER_OUTVAR // This should be used for output variables only. · OPARAMETER_INOUTVAR // This should be used for variables that are both input and output. You should be careful to make sure that this value is correct. If you set an incorrect option, such as OPARAMETER_INOUTVAR for a stored procedure parameter type IN, this can result in errors. In other words OPARAMETER_INOUTVAR means "for IN OUT parameters only". It does not mean that you should use the parameter against one stored procedure that has an IN parameter and then use it in another that has an OUT parameter. In such a case you should use two parameters. Errors caused in this way are rare, but in the case of parameter-related errors, you should verify that the IOTYPE is correct. |
servertype
| The Oracle server type of parameter. See the GetServerType method.
|
object_name
| A case-sensitive string containing the name of the Object. This is only
required if servertype is OTYPE_OBJECT, OTYPE_VARRAY, and OTYPE_TABLE. It is required
for OTYPE_REF when the REF will be used in PL/SQL.
|
![]() Copyright copy; 1996-2000, Oracle Corporation. All Rights Reserved. |
|