The IN_PARAMETERS type is a record type that contains the following list of fields which are used by the IN_PARAMETER_VALUES table type to store a collection of parameters and their values.
TYPE IN_PARAMETERS IS RECORD ( PARAMETER_NAME VARCHAR2(128), PARAMETER_VALUE VARCHAR2(128) );
Field Name | Description |
---|---|
PARAMETER_NAME | The name of the parameter. |
PARAMETER_VALUE | The parameter value associated with the parameter. |