Write a temp-table definition to XML Schema
- Last Updated: June 7, 2019
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
The following code example creates a dynamic temp-table and writes its definition to an XML Schema file:
|
Note that the min-xmlschema method option (lMinSchema
= NO) is set to NO, which means that the
AVM will use all the XML Schema extension attributes necessary to
fully restore objects in the ABL environment. Here is an example portion
of the .xsd file generated by this code:
|
Re-run this code with the min-xmlschema method option
set to YES (lMinSchema = YES),
which means that the AVM will use only use a small subset of its
XML Schema extension attributes. The XML Schema will still identify temp-tables,
ProDataSets, and data relations, and, if necessary, it will provide datatype and initial attributes. For
example, here is a portion of the .xsd file generated
by this code with min-xmlschema set to YES:
|