Support us .Net Basics C# SQL ASP.NET Aarvi MVC Slides C# Programs Subscribe Download

DataSet in asp.net - Part 11

Suggested Videos
Part 8 - SqlDataReader object in ado.net
Part 9 - SqlDataReader object's NextResult method
Part 10 - SqlDataAdapter in ADO.NET

In this video we will learn about 
1. Loading 2 or more tables into a DataSet, and giving these tables a meaningful name.
2. Binding the tables in the DataSet to user interface databound controls like GridView, using the Tables collection property of the DataSet object.

When the following stored procedure is executed, we get 2 result-sets
Create procedure spGetProductAndCategoriesData
as
Begin
Select ProductId, ProductName, UnitPrice 
from tblProductInventory

Select CategoryId, CategoryName
from tblProductCategories
End

Drag and drop 2 GridView controls onto the webform and change the ID to GridViewProducts and GridViewCategories. The HTML in the aspx page should be as shown below.
<asp:GridView ID="GridViewProducts" runat="server">
</asp:GridView>
<br />
<asp:GridView ID="GridViewCategories" runat="server">
</asp:GridView>



Copy and paste the following code into the code behind page.
string ConnectionString = ConfigurationManager.ConnectionStrings["DBConnectionString"].ConnectionString;
using (SqlConnection connection = new SqlConnection(ConnectionString))
{
    SqlDataAdapter dataAdapter = new SqlDataAdapter("spGetProductAndCategoriesData", connection);
    dataAdapter.SelectCommand.CommandType = CommandType.StoredProcedure;
    DataSet dataset = new DataSet();
    dataAdapter.Fill(dataset);

    GridViewProducts.DataSource = dataset;
    GridViewProducts.DataBind();

    GridViewCategories.DataSource = dataset;
    GridViewCategories.DataBind();
}



When you run the project now, notice that both the gridview controls show the same data. This is because, by default, the first table from the dataset is used as the data source for both the gridview controls. We actually want to show products data in one gridview control and categories data in the other. To specify the specific DataTable, that you want to bind to a gridview control, use the Tables collection property of the dataset object, as shown below.
string ConnectionString = ConfigurationManager.ConnectionStrings["DBConnectionString"].ConnectionString;
using (SqlConnection connection = new SqlConnection(ConnectionString))
{
    SqlDataAdapter dataAdapter = new SqlDataAdapter("spGetProductAndCategoriesData", connection);
    dataAdapter.SelectCommand.CommandType = CommandType.StoredProcedure;
    DataSet dataset = new DataSet();
    dataAdapter.Fill(dataset);

    GridViewProducts.DataSource = dataset.Tables[0];
    GridViewProducts.DataBind();

    GridViewCategories.DataSource = dataset.Tables[1];
    GridViewCategories.DataBind();
}

By default the tables in the DataSet will have table names as Table, Table1, Table2 etc. So if you want to give the tables in the DataSet a meaningful name, use the TableName property as shown below.
dataset.Tables[0].TableName = "Products";
dataset.Tables[1].TableName = "Categories";

These table names can then be used when binding to a GridView control, instead of using the integral indexer, which makes your code more readable, and maintainable.
GridViewProducts.DataSource = dataset.Tables["Products"];
GridViewProducts.DataBind();

GridViewCategories.DataSource = dataset.Tables["Categories"];
GridViewCategories.DataBind();

1 comment:

  1. using (SqlConnection con= new SqlConnection(cs))
    {
    SqlDataAdapter da = new SqlDataAdapter("getAllCusOrders", con);
    da.SelectCommand.CommandType = CommandType.StoredProcedure;

    DataSet ds = new DataSet();
    /*Internally ds stored tables according to the query in this case it stored two tables
    stored as 1) Table,index 0
    2) Table1,index 1

    //we can rename the Table also
    ds.Tables[0].TableName = "customers";
    ds.Tables[1].TableName = "orders";

    */
    da.Fill(ds); //both of tables loads into dataSet as index 0,1,.. as name Table,Table1,Table2,....

    // Console.WriteLine(ds.Tables["Table1"].Columns[0].ColumnName.ToString());
    // Console.WriteLine(ds.Tables[0].Rows[2].ItemArray[2].ToString()); //itemArray holds [rowValue1 ,rowValuew2,....]

    for (int tbl = 0; tbl < ds.Tables.Count; tbl++)
    {
    for (int row = 0; row < ds.Tables[tbl].Rows.Count; row++)
    {
    for (int col = 0; col < ds.Tables[tbl].Columns.Count; col++)
    {
    Console.Write(ds.Tables[tbl].Columns[col].ColumnName.ToString() +"\t : ");
    Console.Write(ds.Tables[tbl].Rows[row].ItemArray[col].ToString()+"\n");
    }
    Console.WriteLine();
    }
    if (tbl < ds.Tables.Count-1)
    Console.WriteLine("---------Next Table-----------\n");
    }

    }
    Console.ReadLine();

    }

    ReplyDelete

It would be great if you can help share these free resources