在C#語言中的組件包括有DataSet(DataTable、DataRow、DataColumn、DataRelation、Constraints、DataView),在這些組件里面對于我們做網(wǎng)站的程序員來說Datarelation組件一般使用頻率不是很多,有很多
做網(wǎng)站程序員對其也很陌生,這次我們用實例代碼對組件Datarelation詳解。
在微軟官方網(wǎng)站對于Datarelation的解釋是:Datarelation是基于公共鍵建立父(主)表和子(詳細資料)表之間的關(guān)系。Datarelation的作用在于可以使與正在使用的記錄相關(guān)的記錄可用(如使用父記錄時提供子記錄,如使用子記錄則提供父記錄);然后還可以強制約束的引用完整性(如刪除父記錄時同時也刪除相關(guān)的子記錄)。
對于微軟官方的解釋,C#語言功力不太深的同學可能有點難理解,不過,我們可以先運行以下代碼從實例代碼中了解Datarelation的使用。
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Data.SqlClient;
public partial class DataRelation : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
//先來建立ds數(shù)據(jù)庫
DataSet ds = new DataSet("ds");
//再來建立tbClass和tbBoard兩個數(shù)據(jù)表
DataTable tbClass = new DataTable("tbClass");
DataTable tbBoard = new DataTable("tbBoard");
//把兩個數(shù)據(jù)表tbClass和tbBoard加入數(shù)據(jù)庫
ds.Tables.Add(tbClass);
ds.Tables.Add(tbBoard);
//建立tbClass兩列
DataColumn ClassID = new DataColumn("ClassID", typeof(System.String));
DataColumn ClassName = new DataColumn("ClassName", typeof(System.String));
//設(shè)定ClassID列不允許為空
ClassID.AllowDBNull = false;
//把列加入tbClass表
tbClass.Columns.Add(ClassID);
tbClass.Columns.Add(ClassName);
//設(shè)定tdClass表的主鍵
tbClass.PrimaryKey = new DataColumn[] { ClassID };
//建立tbBoard的三列
DataColumn BoardID = new DataColumn("BoardID", typeof(System.String));
DataColumn BoardName = new DataColumn("BoardName", typeof(System.String));
DataColumn BoardClassID = new DataColumn("BoardClassID", typeof(System.String));
//設(shè)定BoardID列不允許為空
BoardID.AllowDBNull = false;
//把列加入tbBoard表
tbBoard.Columns.Add(BoardID);
tbBoard.Columns.Add(BoardName);
tbBoard.Columns.Add(BoardClassID);
//設(shè)定tbBoard表的主鍵
tbBoard.PrimaryKey = new DataColumn[] { BoardID };
// 為兩個表各加入5條記錄
for (int i = 1; i <= 5; i++)
{
//實例化tbClass表的行
DataRow tbClassRow = tbClass.NewRow();
//為行中每一列賦值
tbClassRow["ClassID"] = Guid.NewGuid();
tbClassRow["ClassName"] = string.Format("分類{0}", i);
//把行加入tbClass表
tbClass.Rows.Add(tbClassRow);
//實例化tbBoard表的行
DataRow tbBoardRow = tbBoard.NewRow();
//為行中每一列賦值
tbBoardRow["BoardID"] = Guid.NewGuid();
tbBoardRow["BoardName"] = string.Format("版塊{0}", i);
tbBoardRow["BoardclassID"] = tbClassRow["ClassID"];
//把行加入tbBoard表
tbBoard.Rows.Add(tbBoardRow);
}
//構(gòu)建父子關(guān)系
ds.Relations.Add("RelationBetweenClassAndBoard", ClassID, BoardClassID);
//從關(guān)系獲取父表
DataTable dtParent = ds.Relations["RelationBetweenClassAndBoard"].ParentTable;
//從關(guān)系獲取子表
DataTable dtChild = ds.Relations["RelationBetweenClassAndBoard"].ChildTable;
//構(gòu)建輸出字符串
System.Text.StringBuilder htmlStr = new System.Text.StringBuilder();
//表開始
htmlStr.Append("<table border='1' cellpadding='5' cellSpacing='0' style='font-size:9pt;font:宋體'>");
//遍歷父表中所有行
for (int i = 0; i < dtParent.Rows.Count; i++)
{
//父表數(shù)據(jù)行開始
htmlStr.Append("<tr style='background-color=#f0f0f0'>");
//遍歷父表行中列
for (int j = 0; j < dtParent.Columns.Count; j++)
{
if (!dtParent.Rows[i].IsNull(j))
htmlStr.Append(string.Format("<td>{0}</td>", dtParent.Rows[i][j]));
}
//父表數(shù)據(jù)結(jié)束
htmlStr.Append("</tr>");
//遍歷表中所有行
for (int j = 0; j < dtParent.Rows[i].GetChildRows("RelationBetweenClassAndBoard").Length; j++)
{
//子表數(shù)據(jù)行開始
htmlStr.Append("<tr>");
//遍歷子表行中列
for (int k = 0; k < dtParent.Columns.Count; k++)
{
if (!dtParent.Rows[i].GetChildRows("RelationBetweenClassAndBoard")[j].IsNull(k))
htmlStr.Append(string.Format("<td>{0}</td>", dtParent.Rows[i].GetChildRows("RelationBetweenClassAndBoard")[j][k]));
}
//子表數(shù)據(jù)行結(jié)束
htmlStr.Append("</tr>");
}
}
//表結(jié)束
htmlStr.Append("</table><br>");
Response.Write(htmlStr);
}
}
上述代碼運行后的結(jié)果圖如下:
從上面的代碼可以看出,要創(chuàng)建DataRealation類型里要有兩個表,為這兩個表建立關(guān)系時必須要有一個相同數(shù)據(jù)類型。
除非注明,文章均為長沙
做網(wǎng)站公司原創(chuàng),轉(zhuǎn)載請以鏈接形式注明出處,謝謝。
本文地址:
http://www.aushadhiyoga.com/zwzzs/Datarelation-100/