Home > Articles > Programming > Windows Programming

Parsing XML with the DataSet

XML has a native role in the ADO.NET data stack through the DataSet class. The DataSet can parse and generate XML content from data sources that have the appropriate structured content. This provides a nice alternative to the usual set of XML interface APIs, such as the DOM node-based XmlDocument or the stream-based XmlReader.

The DataSetXML form shown in Listing 4 demonstrates how to generate XML from a loaded DataSet. The form display is depicted in the screenshot shown in Figure 5. The LoadDB button loads the Customers and Orders tables into the DataSet and then links them in a nested fashion. The XML output produced in the text box control named MainTextBox comes from calling GetXml on the DataSet.

The SaveXML button can be used to persist the DataSet to data after a load from the database. The WriteXml method of the DataSet handles the hard chores for the task and has the option of several output formats, using the method overload that takes the XmlWriteMode enumeration:

  • IgnoreSchema produces raw XML data.

  • WriteSchema includes an embedded XML schema document.

  • Diffgram produces an XML format suitable for updating SQL Server 2000 table data through its UpdateGram facilities.

The Schema check box on the form toggles between IgnoreSchema and WriteSchema. The Attribute check box determines whether the code loops through the Customers DataTable to set each DataColumn's ColumnMapping enum to Attribute instead of the default Element setting.

Once you have saved the XML content to file, you can then load it using the LoadXML button, which uses the ReadXml method of the DataSet. The button click handler also deciphers the internal structure of the DataSet by calling the ReadStructure to load the StructureListBox control to see how it maps the hierarchical view of the XML document to the relational view of the DataSet.

The mapping task of XML to relational data follows a finite set of rules. Attributes in an XML document are mapped to Column values on the parent DataTable that represents their parent element. Elements that have only text content are mapped to a Column value as well, while elements that are repeated under a parent element or have complex content beneath them get their own table. To link two nested elements, a hidden primary key and foreign key are sometimes added to the parent and child DataTables along with a linking DataRelationship. The ColumnMapping property of these generated key columns is set to Hidden so that the XML serialization process doesn't output them in the result XML document.

The hidden field behavior with our sample is noticeable if you save the XML to file without a schema. In a load using the LoadXML button, a Customer_Id DataColumn is added to both the Customers and Orders tables, with a ColumnMapping property set to Hidden. Try the example by loading from database and saving with schema to remove the need for the hidden column. This allows the DataSet to reuse your regular data as foreign key and primary key, using the unique/keyref constructs of XML schema.

Listing 4—DataSet and XML

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;

namespace DisconnectedOpsIIDemo
{
  /// <summary>
  /// Summary description for DataSetXML.
  /// </summary>
  public class DataSetXML : System.Windows.Forms.Form
  {
   [STAThread]
   static void Main(string[] args)
   {
     Application.Run(new DataSetXML());
   }

   private DataSet CustDS;

   private System.Windows.Forms.DataGrid MainDataGrid;
   private System.Windows.Forms.Button btnLoadDB;
   private System.Windows.Forms.Button btnLoadXML;
   private System.Windows.Forms.OpenFileDialog openFileDialog1;
   private System.Windows.Forms.Button btnSaveXML;
   private System.Windows.Forms.SaveFileDialog saveFileDialog1;
   private System.Windows.Forms.CheckBox chkAttributes;
   private System.Windows.Forms.CheckBox chkEmbedSchema;
   private System.Windows.Forms.ListBox StructureListBox;
   private System.Windows.Forms.TextBox MainTextBox;
   /// <summary>
   /// Required designer variable.
   /// </summary>
   private System.ComponentModel.Container components = null;

   public DataSetXML()
   {
     //
     // Required for Windows Form Designer support
     //
     InitializeComponent();

     //
     // TODO: Add any constructor code after InitializeComponent call
     //
   }

   /// <summary>
   /// Clean up any resources being used.
   /// </summary>
   protected override void Dispose( bool disposing )
   {
     if( disposing )
     {
      if(components != null)
      {
        components.Dispose();
      }
     }
     base.Dispose( disposing );
   }

   #region Windows Form Designer generated code
   /// <summary>
   /// Required method for Designer support - do not modify
   /// the contents of this method with the code editor.
   /// </summary>
   private void InitializeComponent()
   {
     this.MainDataGrid =
      new System.Windows.Forms.DataGrid();
     this.btnLoadDB =
      new System.Windows.Forms.Button();
     this.btnSaveXML =
      new System.Windows.Forms.Button();
     this.btnLoadXML =
      new System.Windows.Forms.Button();
     this.openFileDialog1 =
      new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialog1 =
      new System.Windows.Forms.SaveFileDialog();
     this.chkAttributes =
      new System.Windows.Forms.CheckBox();
     this.chkEmbedSchema =
      new System.Windows.Forms.CheckBox();
     this.StructureListBox =
      new System.Windows.Forms.ListBox();
     this.MainTextBox =
      new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)
      (this.MainDataGrid)).BeginInit();
     this.SuspendLayout();
     //
     // MainDataGrid
     //
     this.MainDataGrid.DataMember = "";
     this.MainDataGrid.HeaderForeColor =
      System.Drawing.SystemColors.ControlText;
     this.MainDataGrid.Location =
      new System.Drawing.Point(8, 24);
     this.MainDataGrid.Name =
      "MainDataGrid";
     this.MainDataGrid.Size =
      new System.Drawing.Size(608, 112);
     this.MainDataGrid.TabIndex = 14;
     //
     // btnLoadDB
     //
     this.btnLoadDB.Location =
      new System.Drawing.Point(8, 320);
     this.btnLoadDB.Name = "btnLoadDB";
     this.btnLoadDB.TabIndex = 15;
     this.btnLoadDB.Text = "Load DB";
     this.btnLoadDB.Click +=
      new System.EventHandler(
      this.btnLoadDB_Click);
     //
     // btnSaveXML
     //
     this.btnSaveXML.Location =
      new System.Drawing.Point(464, 312);
     this.btnSaveXML.Name = "btnSaveXML";
     this.btnSaveXML.TabIndex = 16;
     this.btnSaveXML.Text = "Save XML";
     this.btnSaveXML.Click +=
      new System.EventHandler(
      this.btnSaveXML_Click);
     //
     // btnLoadXML
     //
     this.btnLoadXML.Location =
      new System.Drawing.Point(104, 320);
     this.btnLoadXML.Name = "btnLoadXML";
     this.btnLoadXML.TabIndex = 17;
     this.btnLoadXML.Text = "Load XML";
     this.btnLoadXML.Click +=
      new System.EventHandler(
      this.btnLoadXML_Click);
     //
     // saveFileDialog1
     //
     this.saveFileDialog1.FileName = "doc1";
     //
     // chkAttributes
     //
     this.chkAttributes.Location =
      new System.Drawing.Point(200, 312);
     this.chkAttributes.Name = "chkAttributes";
     this.chkAttributes.Size =
      new System.Drawing.Size(104, 32);
     this.chkAttributes.TabIndex = 19;
     this.chkAttributes.Text =
      "Save using XML attributes";
     //
     // chkEmbedSchema
     //
     this.chkEmbedSchema.Location =
      new System.Drawing.Point(312, 312);
     this.chkEmbedSchema.Name =
      "chkEmbedSchema";
     this.chkEmbedSchema.Size =
      new System.Drawing.Size(144, 32);
     this.chkEmbedSchema.TabIndex = 20;
     this.chkEmbedSchema.Text =
      "Save with embedded XML schema";
     //
     // StructureListBox
     //
     this.StructureListBox.HorizontalScrollbar = true;
     this.StructureListBox.Location =
      new System.Drawing.Point(368, 152);
     this.StructureListBox.Name =
      "StructureListBox";
     this.StructureListBox.ScrollAlwaysVisible = true;
     this.StructureListBox.Size =
      new System.Drawing.Size(248, 147);
     this.StructureListBox.TabIndex = 21;
     //
     // MainTextBox
     //
     this.MainTextBox.Location =
      new System.Drawing.Point(8, 144);
     this.MainTextBox.Multiline = true;
     this.MainTextBox.Name = "MainTextBox";
     this.MainTextBox.ScrollBars =
      System.Windows.Forms.ScrollBars.Both;
     this.MainTextBox.Size =
      new System.Drawing.Size(344, 160);
     this.MainTextBox.TabIndex = 22;
     this.MainTextBox.Text = "";
     this.MainTextBox.WordWrap = false;
     //
     // DataSetXML
     //
     this.AutoScaleBaseSize =
      new System.Drawing.Size(5, 13);
     this.ClientSize =
      new System.Drawing.Size(624, 349);
     this.Controls.AddRange(
      new System.Windows.Forms.Control[] {
        this.MainTextBox,
        this.StructureListBox,
        this.chkEmbedSchema,
        this.chkAttributes,
        this.btnLoadXML,
        this.btnSaveXML,
        this.btnLoadDB,
        this.MainDataGrid});
     this.Name = "DataSetXML";
     this.Text = "DataSetXML";
     ((System.ComponentModel.ISupportInitialize)
      (this.MainDataGrid)).EndInit();
     this.ResumeLayout(false);

   }
   #endregion


   private void ReadStructure(DataSet ds)
   {
     StructureListBox.Items.Clear();

     foreach (DataTable dt in ds.Tables)
     {
      StructureListBox.Items.Add("Table:" +
        dt.TableName);
      foreach(DataColumn dc in dt.Columns)
      {
        StructureListBox.Items.Add(
        "Col:" + dc.ColumnName +
        " Mapping:" + dc.ColumnMapping.ToString());
      }
     }
     foreach (DataRelation dr in ds.Relations)
     {
      StructureListBox.Items.Add(
        "Relation:" + dr.RelationName);
      StructureListBox.Items.Add(
        "ParentTable: " +
        dr.ParentTable.TableName);
      foreach (DataColumn dc in dr.ParentColumns)
      {
        StructureListBox.Items.Add(
         "Col:" + dc.ColumnName);
      }
      StructureListBox.Items.Add(
        "ChildTable: " +
        dr.ChildTable.TableName);
      foreach (DataColumn dc in dr.ChildColumns)
      {
        StructureListBox.Items.Add(
         "Col:" + dc.ColumnName);
      }
     }

   }

   private void btnLoadDB_Click(object sender,
     System.EventArgs e)
   {
     MainDataGrid.DataSource = null;
     CustDS = new DataSet("CustOrdersDS");
     DataAdapterUtility.LoadCustomers(CustDS);
     DataAdapterUtility.LoadOrders(CustDS);
     DataAdapterUtility.LinkCustOrders(CustDS);
     MainDataGrid.DataSource = C
      ustDS.Tables["Customers"].DefaultView;
     MainTextBox.Text = CustDS.GetXml();
     ReadStructure(CustDS);
   }

   private void btnLoadXML_Click(object sender,
     System.EventArgs e)
   {
     DialogResult result =
      openFileDialog1.ShowDialog(this);
     if (result == DialogResult.OK)
     {
      MainDataGrid.DataSource = null;
      CustDS = new DataSet();
      CustDS.ReadXml(openFileDialog1.FileName);
      MainDataGrid.DataSource = CustDS;
      MainTextBox.Text = CustDS.GetXml();
      ReadStructure(CustDS);

     }
   }

   private void btnSaveXML_Click(object sender,
     System.EventArgs e)
   {

     DialogResult result =
      saveFileDialog1.ShowDialog(this);
     if (result == DialogResult.OK)
     {
      foreach (DataColumn dc in
        CustDS.Tables["Customers"].Columns)
      {
        if (chkAttributes.Checked == true)
         dc.ColumnMapping =
           MappingType.Attribute;
        else
         dc.ColumnMapping =
           MappingType.Element;
      }
      if (chkEmbedSchema.Checked == true)
      {
        CustDS.WriteXml(
         saveFileDialog1.FileName,
         XmlWriteMode.WriteSchema);
        MainTextBox.Text = CustDS.GetXml();

        MainTextBox.Text += CustDS.GetXmlSchema();
        ReadStructure(CustDS);
      }
      else
      {
        CustDS.WriteXml(saveFileDialog1.FileName);
        MainTextBox.Text = CustDS.GetXml();
        ReadStructure(CustDS);
      }
     }
   }

  }
}

Figure 5Figure 5 Generating and parsing XML with the DataSet.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020