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

OLE2.IsSupported

Description

Confirms that the OLE2 package is supported on the current platform.

Syntax


OLE2.ISSUPPORTED

Returns

TRUE, if OLE2 is supported on the platform; FALSE if it is not.

Example


/* 
** Before calling an OLE2 object in platform independent code, 
** use this predicate to determine if OLE2 is supported on the 
** current platform.
*/
IF (OLE2.ISSUPPORTED)THEN
	. . . PL/SQL code using the OLE2 package
ELSE
	. . . message that OLE2 is not supported
END IF;