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

DDE.GETFORMATSTR

Description

Translates a data format number into a format name string.

Syntax

DDE.GETFORMATSTR (FormatNum)

Parameters

Parameter

Type

Description

FormatNum

PLS_INTEGER

Data format number

Returns CHAR

Notes

DDE.GETFORMATSTR Examples

DECLARE
 FormatStr CHAR(20);
BEGIN
 /* Get a data format name
 (should return the string 'CF_TEXT') */
 FormatStr := DDE.GetFormatStr(CF_TEXT);
END;