Fill DataSet With SqlDataAdapter : SqlDataAdapter « ADO.Net « C# / CSharp Tutorial






using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

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

  class Program
  {
    static void Main(string[] args)
    {
      string cnStr = "Integrated Security = SSPI;Initial Catalog=YourDB;Data Source=(local)\\SQLEXPRESS";
      DataSet ds = new DataSet("YourDB");
      SqlDataAdapter dAdapt = new SqlDataAdapter("Select * From Inventory", cnStr);
      DataTableMapping custMap = dAdapt.TableMappings.Add("Inventory", "Current Inventory");
      custMap.ColumnMappings.Add("CarID", "Car ID");
      custMap.ColumnMappings.Add("PetName", "Name of Car");
      dAdapt.Fill(ds, "Inventory");
      PrintDataSet(ds);
    } 
    static void PrintDataSet(DataSet ds)
    {
      Console.WriteLine(ds.DataSetName);
      foreach (System.Collections.DictionaryEntry de in ds.ExtendedProperties)
      {
        Console.WriteLine("Key = {0}, Value = {1}", de.Key, de.Value);
      }
      foreach (DataTable dt in ds.Tables)
      {
        Console.WriteLine(dt.TableName);
        for (int curCol = 0; curCol < dt.Columns.Count; curCol++)
        {
          Console.Write(dt.Columns[curCol].ColumnName.Trim() + "\t");
        }
        PrintTable(dt);
      }
    }

    private static void PrintTable(DataTable dt)
    {
      DataTableReader dtReader = dt.CreateDataReader();
      while (dtReader.Read())
      {
        for (int i = 0; i < dtReader.FieldCount; i++)
        {
          Console.WriteLine(dtReader.GetValue(i).ToString().Trim());
        }
      }
      dtReader.Close();
    }
  }








32.25.SqlDataAdapter
32.25.1.Use SqlDataAdapter to deal with the select statement
32.25.2.Update command with parameters
32.25.3.Insert command with parameters
32.25.4.Delete command with parameters
32.25.5.Update SqlDataAdapter with DataSet
32.25.6.Adding Data to MDF file with SqlDataAdapter
32.25.7.Executing a SQL Server Scalar-Valued Function
32.25.8.Executing a SQL Server Table-Valued Function
32.25.9.Fill DataSet With SqlDataAdapter
32.25.10.Persist Adds
32.25.11.Persist Adds Builder
32.25.12.Persist Changes
32.25.13.Persist Deletes
32.25.14.Updating Data with SqlDataAdapter and DataSet
32.25.15.Create a data adapter from select statement and connection string