XMLCREATEDTD()

From Lianjapedia
Jump to: navigation, search

Purpose

Function to create a Document Type definition file for a particular table

Syntax

XMLCREATEDTD([<workarea>])

See Also

COPY, FETCH, PRINT_XML(), SELECT, UPDATE, XML, XML_DECODE(), XML_ENCODE(), XML_GATHER(), XML_SCATTER(), XMLCOUNT(), XMLFIRST(), XMLNEXT(), XMLVALIDATE(), XQUERY(), XQUERY ATTRIBUTES(), XQUERY_CLOSE(), XQUERY_COUNT(), XQUERY_DECODE(), XQUERY_FILE(), XQUERY_FIND(), XQUERY_NODE(), XQUERY_OPEN(), XQUERY_SELECT()

Description

The XMLCREATEDTD() function will create a Document Type Definition (DTD) file which matches the table open in the current workarea. This DTD file can then be used to validate Extensible Markup Language (XML) files created for this table. An optional workarea name or number may be specified to select a table in another workarea.

Parameters Required Default Description
<workarea> No None The workarea number or name to use.

The XMLCREATEDTD() function will return .T. for success and .F. if it fails.

Note: The XMLFORMAT setting determines whether Lianja creates the DTD file. A DTD file will only be created when XMLFORMAT is set to Lianja. If XMLFORMAT is set to ADO, the XMLCREATEDTD() will return .T., but no DTD file will be created.

Example

use prospect
set xmlformat to recital
? xmlcreatedtd()
.T.