A script-enabled browser is required for this page to function properly.

SET_PARAMETER_ATTR Built-in

Description

Sets the type and value of an indicated parameter in an indicated parameter list.

Syntax

SET_PARAMETER_ATTR
(list PARAMLIST,
key
VARCHAR2,
paramtype
NUMBER,
value
VARCHAR2);

SET_PARAMETER_ATTR
(name VARCHAR2,
key
VARCHAR2,
paramtype
NUMBER,
value
VARCHAR2);

Built-in Type unrestricted procedure

Enter Query Mode yes

Parameters

list or name 
 
Specifies the parameter list. The actual parameter can be either a parameter list ID of type PARAMLIST, or the VARCHAR2 name of the parameter list.
 
key 
 
The VARCHAR2 name of the parameter.
 
paramtype 
 
Specifies the type of parameter you intend to pass:

DATA_PARAMETER Indicates that the parameter's value is the name of a record group.

TEXT_PARAMETER Indicates that the parameter's value is an actual data value.

value
 
The value of the parameter specified as a VARCHAR2 string.

GET_PARAMETER_ATTR Built-in