Build a DataSet with relationship : DataSet « ADO.net Database « ASP.Net

ASP.Net
1. ADO.net Database
2. Ajax
3. Asp Control
4. Collections
5. Components
6. Data Binding
7. Development
8. File Directory
9. HTML Control
10. Language Basics
11. Login Security
12. Mobile Control
13. Network
14. Page
15. Request
16. Response
17. Server
18. Session Cookie
19. Sitemap
20. Theme Style
21. User Control and Master Page
22. Validation by Control
23. Validation by Function
24. WebPart
25. WPF
26. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
ASP.Net » ADO.net Database » DataSet 
Build a DataSet with relationship


<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="SettingRelations" Debug="true" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>Setting Relationships in a DataSet</title>
</head>
<body>
   <form id="form1" runat="server">
   <div id="container">
      <h1>Setting Relationships in a DataSet</h1>
      <p>This example demonstrates how to relate two DataTables in a DataSet</p>
      <asp:GridView id="grdAuthors" runat="server" /> 
      <hr />
      <asp:GridView id="grdBooks" runat="server" />   
      <hr />
      <dl>
      <asp:Label id="labReport" runat="server" />
      </dl>
   </div>
   </form>
</body>
</html>

File: Default.aspx.cs

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class SettingRelations : System.Web.UI.Page
{
   DataSet ds = null;

   protected void Page_Load(object sender, EventArgs e)
   {
      ds = new DataSet();

      ds.Tables.Add(MakeAuthorData());
      ds.Tables.Add(MakeBookData());

      DataRelation relation = new DataRelation("Book2Author", ds.Tables["Authors"].Columns["AuthorId"], ds.Tables["Books"].Columns["AuthorId"]);
      ds.Relations.Add(relation);

      grdAuthors.DataSource = ds.Tables["Authors"].DefaultView;
      grdAuthors.DataBind();

      grdBooks.DataSource = ds.Tables["Books"].DefaultView;
      grdBooks.DataBind();

        foreach (DataRow artistRow in ds.Tables["Authors"].Rows)
        {
           string fname = (string)artistRow["FirstName"];
           string lname = (string)artistRow["LastName"];
           labReport.Text += "<dt>" + fname + " " + lname;
        
           foreach (DataRow bookRow in artistRow.GetChildRows(relation))
           {
              string title = (string)bookRow["Title"];
              labReport.Text += "<dd>" + title;
           }         
        }
   }

   private DataTable MakeAuthorData()
   {
      DataTable table = new DataTable();
      table.TableName = "Authors";

      DataColumn idCol = new DataColumn();
      idCol.ColumnName = "AuthorId";
      idCol.DataType = typeof(Int32);
      idCol.AllowDBNull = false;
      idCol.Unique = true;

      DataColumn firstNameCol = new DataColumn("FirstName", typeof(string));
      DataColumn lastNameCol = new DataColumn("LastName", typeof(string));

      table.Columns.Add(idCol);
      table.Columns.Add(firstNameCol);
      table.Columns.Add(lastNameCol);

      DataRow r1 = table.NewRow();
      r1[010;
      r1[1"A";
      r1[2"a";
      table.Rows.Add(r1);

      DataRow r2 = table.NewRow();
      r2[020;
      r2["FirstName""B";
      r2["LastName""b";
      table.Rows.Add(r2);

      DataRow r3 = table.NewRow();
      r3[030;
      r3["FirstName""C";
      r3["LastName""c";
      table.Rows.Add(r3);

      DataRow r4 = table.NewRow();
      r4[040;
      r4["FirstName""D";
      r4["LastName""d";
      table.Rows.Add(r4);

      return table;
   }

   private DataTable MakeBookData()
   {
      DataTable table = new DataTable();
      table.TableName = "Books";

      DataColumn idCol = new DataColumn();
      idCol.ColumnName = "Id";
      idCol.DataType = typeof(Int32);
      idCol.AllowDBNull = false;
      idCol.Unique = true;
      idCol.AutoIncrement = true;

      DataColumn authorCol = new DataColumn("AuthorId", typeof(Int32));
      DataColumn nameCol = new DataColumn("Title", typeof(string));
      DataColumn priceCol = new DataColumn("Price", typeof(double));

      table.Columns.Add(idCol);
      table.Columns.Add(authorCol);
      table.Columns.Add(nameCol);
      table.Columns.Add(priceCol);

      DataRow r1 = table.NewRow();
      r1[130;
      r1[2"Java";
      r1[349.99;
      table.Rows.Add(r1);

      DataRow r2 = table.NewRow();
      r2[110;
      r2[2"C#";
      r2[319.99;
      table.Rows.Add(r2);

      DataRow r3 = table.NewRow();
      r3[140;
      r3[2"Javascript";
      r3[324.99;
      table.Rows.Add(r3);

      DataRow r4 = table.NewRow();
      r4[140;
      r4[2"Oracle";
      r4[324.99;
      table.Rows.Add(r4);

      return table;
   }
}

 
Related examples in the same category
1. Loop through data in Sql Server by DataSet
2. Loop through DataSet
3. Get query result from DataSet
4. Load Table from DataSet
5. Build a DataSet
6. Create DataSet pragmatically
7. Output the content of a DataSet as XML
8. Finding a Particular Row in a DataSet
9. Converting XML to DataSet and Vice versa
10. Converting XML to DataSet and Vice versa (VB)
11. Programmatically creating a DataSet object
12. DataSet Serialization and Deserialization using Binary Format
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.