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

DDE.ISSUPPORTED built-in function

This function confirms that the DDE package is supported on the current platform.

Syntax

DDE.ISSUPPORTED

Returns

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

Example


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

See also

About the DDE built-in package

DDE built-in package

DDE built-in exceptions