Open the XML file and read into a DataSet : DataSet « Database ADO.net « C# / C Sharp






Open the XML file and read into a DataSet




using System;
using System.IO;
using System.Data;

public class MainClass {
    static void Main(string[] args) {
        if (args.Length != 1)
            return;

        FileStream fs = new FileStream(args[0], FileMode.Open);
        DataSet ds = new DataSet();
        ds.ReadXml(fs);

        // Use a DataTable to display the members.
        DataTable mt = ds.Tables["member"];
        for (int row = 0; row < mt.Rows.Count; row++) {
            for (int col = 0; col < mt.Columns.Count - 1; col++) {
                Console.WriteLine("{0,-10}{1}",
                    mt.Columns[col].Caption,
                    mt.Rows[row][col].ToString().Trim());
            }
            Console.WriteLine();
        }
        fs.Close();
    }
}

           
       








Related examples in the same category

1.Print DataSet out
2.Finding Data
3.How to perform a SELECT statement and store the returned rows in a DataSet objectHow to perform a SELECT statement and store the returned rows in a DataSet object
4.Populate a DataSet object using a SELECT statementPopulate a DataSet object using a SELECT statement
5.Populate a DataSet object with multiple DataTable objects
6.Populate a DataSet with multiple DataTable objects using multiple SELECT statements
7.Use the Merge() method
8.DataSet Delete
9.For each row in DataSet, reference the column data by column name
10.DataSet Read
11.ReadXml
12.how to write and read XML files
13.Populate a DataSet object with a range of rows from a SELECT statement
14.Using Datasets
15.Using Multi Tabled Datasets
16.Read data from DataSet
17.Populate a DataSet object with multiple DataTable objects by changing the CommandText property of a DataAdapter object's SelectCommand
18.Use DataViewManager to wrap DataSet