DDE.GETFORMATSTR
built-in functionThis function translates a data format number into a format name string.
DDE.GETFORMATSTR (formatnum)
Parameter |
Type |
Description |
|
|
Data format number. |
CHAR
This function returns the string representation of the data format number that
is a CHAR
.
This function returns a data format name if the data format number is valid.
Valid format numbers include Microsoft Windows
predefined data formats and any user-defined formats that were registered
with DDE.GETFORMATNUM
.
DECLARE
FormatStr CHAR(20);
BEGIN
/* Get a data format name
(should return the string 'CF_TEXT') */
FormatStr := DDE.GETFORMATSTR(CF_TEXT);
END;
About the DDE
built-in package
Copyright © 1984, 2005, Oracle. All rights reserved.