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

OLE2.Add_Arg

Description

Appends an argument to an argument List created with OLE2.Create_Arglist.

Syntax


PROCEDURE OLE2.Add_Arg
   (List  List_Type,
    value NUMBER);

PROCEDURE OLE2.Add_Arg
   (List  List_Type,
    value VARCHAR2);

Parameters

Parameter Description
List The name of an argument List assigned to the OLE2.Create_Arglist Function.
value The argument value.

Usage Notes

The argument can be of the type NUMBER or VARCHAR2.

Example


 /* 
** Add an argument to my_Arglist
*/
OLE2.Add_Arg(my_Arglist, 'Sales Revenue');