Print DataSet out : DataSet « Database ADO.net « C# / C Sharp






Print DataSet out


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

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

class Program {
    static void Main(string[] args) {
        string cnStr = "uid=sa;pwd=;Initial Catalog=yourDatabase;Data Source=(local)";
        DataSet myDS = new DataSet("Cars");
        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");

        try {
            dAdapt.Fill(myDS, "Inventory");
        } catch (Exception ex) {
            Console.WriteLine(ex.Message);
        }
        PrintDataSet(myDS);
    }
    static void PrintDataSet(DataSet ds) {
        Console.WriteLine("Tables in '{0}' DataSet.\n", ds.DataSetName);
        foreach (DataTable dt in ds.Tables) {
            Console.WriteLine("{0} Table.\n", dt.TableName);
            for (int curCol = 0; curCol < dt.Columns.Count; curCol++) {
                Console.Write(dt.Columns[curCol].ColumnName.Trim() + "\t");
            }
            for (int curRow = 0; curRow < dt.Rows.Count; curRow++) {
                for (int curCol = 0; curCol < dt.Columns.Count; curCol++) {
                    Console.Write(dt.Rows[curRow][curCol].ToString().Trim() + "\t");
                }
                Console.WriteLine();
            }
        }
    }

}


           
       








Related examples in the same category

1.Finding Data
2.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
3.Populate a DataSet object using a SELECT statementPopulate a DataSet object using a SELECT statement
4.Populate a DataSet object with multiple DataTable objects
5.Populate a DataSet with multiple DataTable objects using multiple SELECT statements
6.Use the Merge() method
7.DataSet Delete
8.For each row in DataSet, reference the column data by column name
9.DataSet Read
10.ReadXml
11.how to write and read XML files
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