Export to XML File

Use this option to write data to an XML formatted document file.

You will be prompted for the name of the output file.

You do not need any special software to write the XML file.

You can read the export file using most text editors.



No Schema

XML file does not include a schema.

With Schema

XML file will include a schema.


Example Output Log


Example XML Export No Schema

<?xml version="1.0" standalone="yes"?>

<NewDataSet>

  <RandomWords>

    <Word>blanket</Word>

  </RandomWords>

  <RandomWords>

    <Word>memorandum</Word>

  </RandomWords>

  <RandomWords>

    <Word>factory</Word>

  </RandomWords>

  <RandomWords>

    <Word>congregation</Word>

  </RandomWords>

  <RandomWords>

    <Word>eye</Word>

  </RandomWords>

  <RandomWords>

    <Word>security</Word>

  </RandomWords>

  <RandomWords>

    <Word>gathering</Word>

  </RandomWords>

  <RandomWords>

    <Word />

  </RandomWords>

</NewDataSet>

 

Example XML Export With Schema

<?xml version="1.0" standalone="yes"?>

<NewDataSet>

  <xs:schema id="NewDataSet" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">

    <xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:MainDataTable="RandomWords" msdata:UseCurrentLocale="true">

      <xs:complexType>

        <xs:choice minOccurs="0" maxOccurs="unbounded">

          <xs:element name="RandomWords">

            <xs:complexType>

              <xs:sequence>

                <xs:element name="Word" type="xs:string" minOccurs="0" />

              </xs:sequence>

            </xs:complexType>

          </xs:element>

        </xs:choice>

      </xs:complexType>

    </xs:element>

  </xs:schema>

  <RandomWords>

    <Word>blanket</Word>

  </RandomWords>

  <RandomWords>

    <Word>memorandum</Word>

  </RandomWords>

  <RandomWords>

    <Word>factory</Word>

  </RandomWords>

  <RandomWords>

    <Word>congregation</Word>

  </RandomWords>

  <RandomWords>

    <Word>eye</Word>

  </RandomWords>

  <RandomWords>

    <Word>security</Word>

  </RandomWords>

  <RandomWords>

    <Word>gathering</Word>

  </RandomWords>

  <RandomWords>

    <Word />

  </RandomWords>

</NewDataSet>