Load XML to DataSet : Xml DataSet : XML C# Examples


C# Examples » XML » Xml DataSet »

 

Load XML to DataSet









    
using  System;
using  System.Drawing;
using  System.Collections;
using  System.ComponentModel;
using  System.Windows.Forms;
using  System.Data;
using  System.Data.OleDb;
using  System.Xml;

public  class  LoadXMLDataSet  :  System.Windows.Forms.Form
{
    private  DataGrid  dataGrid1=  new  DataGrid();
    public  LoadXMLDataSet()
    {
        this.dataGrid1.DataMember  =  "";
        this.dataGrid1.Location  =  new  System.Drawing.Point(8,  16);
        this.dataGrid1.Size  =  new  System.Drawing.Size(264,  232);

        this.AutoScaleBaseSize  =  new  System.Drawing.Size(5,  13);
        this.ClientSize  =  new  System.Drawing.Size(292,  273);
        this.Controls.AddRange(new  System.Windows.Forms.Control[]  {this.dataGrid1});
                      
        XmlDataDocument  xmlDatadoc  =  new  XmlDataDocument();
        xmlDatadoc.DataSet.ReadXml("C:\\books.xml");

        DataSet  ds  =  new  DataSet("Books  DataSet");
        ds  =  xmlDatadoc.DataSet;

        dataGrid1.DataSource  =  ds.DefaultViewManager;  
    }
    static  void  Main()  
    {
        Application.Run(new  LoadXMLDataSet());
    }
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo XML
» Xml DataSet