Appends an argument to an argument List created with OLE2.Create_Arglist.
PROCEDURE OLE2.Add_Arg
(List List_Type,
value NUMBER);
PROCEDURE OLE2.Add_Arg
(List List_Type,
value VARCHAR2);
Parameter | Description |
---|---|
List | The name of an argument List assigned to the OLE2.Create_Arglist Function. |
value | The argument value. |
The argument can be of the type NUMBER or VARCHAR2.
/*
** Add an argument to my_Arglist
*/
OLE2.Add_Arg(my_Arglist, 'Sales Revenue');