Difference between revisions of "XMLCREATEDTD()"

From Lianjapedia
Jump to: navigation, search
Line 11: Line 11:
 
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.
 
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.
  
{| class="wikitable" width=100%
+
{| class="wikitable" width="100%"
 
!Parameters||Required||Default||Description
 
!Parameters||Required||Default||Description
 
|-
 
|-

Revision as of 10:37, 4 February 2013

Purpose

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

Syntax

XMLCREATEDTD([<workarea>])

See Also

COPY, FETCH, SELECT, UPDATE, XML, XML_DECODE(), XML_ENCODE(), XML_GATHER(), XML_SCATTER(), XMLCOUNT(), XMLFIRST(), XMLNEXT(), XMLVALIDATE()

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.