how to write and read XML files : DataSet « Database ADO.net « C# / C Sharp






how to write and read XML files



   
using System;
using System.Data;
using System.Data.SqlClient;

class WriteAndReadXML {
    public static void Main() {
        SqlConnection mySqlConnection = new SqlConnection("server=localhost;database=Northwind;uid=sa;pwd=sa");

        SqlCommand mySqlCommand = mySqlConnection.CreateCommand();
        mySqlCommand.CommandText =
          "SELECT TOP 2 CustomerID, CompanyName, ContactName, " +
          "Address " +
          "FROM Customers " +
          "ORDER BY CustomerID";
        SqlDataAdapter mySqlDataAdapter = new SqlDataAdapter();
        mySqlDataAdapter.SelectCommand = mySqlCommand;
        DataSet myDataSet = new DataSet();
        mySqlConnection.Open();
        mySqlDataAdapter.Fill(myDataSet, "Customers");
        mySqlConnection.Close();

        myDataSet.WriteXml("myXmlFile.xml");

        myDataSet.WriteXml("myXmlFile2.xml", XmlWriteMode.WriteSchema);

        myDataSet.WriteXmlSchema("myXmlSchemaFile.xml");

        myDataSet.Clear();

        myDataSet.ReadXml("myXmlFile.xml");

        DataTable myDataTable = myDataSet.Tables["Customers"];
        foreach (DataRow myDataRow in myDataTable.Rows) {
            Console.WriteLine("CustomerID = " + myDataRow["CustomerID"]);
            Console.WriteLine("CompanyName = " + myDataRow["CompanyName"]);
            Console.WriteLine("ContactName = " + myDataRow["ContactName"]);
            Console.WriteLine("Address = " + myDataRow["Address"]);
        }
    }
}


           
       








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.Open the XML file and read into a DataSet
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