在C#语言中的组件包括有DataSet(DataTable、DataRow、DataColumn、DataRelation、Constraints、DataView),在这些组件里面对于我们做网站的程序员来说Datarelation组件一般使用频率不是很多,有很多
做网站程序员对其也很陌生,这次我们用实例代码对组件Datarelation详解。
在微软官方网站对于Datarelation的解释是:Datarelation是基于公共键建立父(主)表和子(详细资料)表之间的关系。Datarelation的作用在于可以使与正在使用的记录相关的记录可用(如使用父记录时提供子记录,如使用子记录则提供父记录);然后还可以强制约束的引用完整性(如删除父记录时同时也删除相关的子记录)。
对于微软官方的解释,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数据库
DataSet ds = new DataSet("ds");
//再来建立tbClass和tbBoard两个数据表
DataTable tbClass = new DataTable("tbClass");
DataTable tbBoard = new DataTable("tbBoard");
//把两个数据表tbClass和tbBoard加入数据库
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));
//设定ClassID列不允许为空
ClassID.AllowDBNull = false;
//把列加入tbClass表
tbClass.Columns.Add(ClassID);
tbClass.Columns.Add(ClassName);
//设定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));
//设定BoardID列不允许为空
BoardID.AllowDBNull = false;
//把列加入tbBoard表
tbBoard.Columns.Add(BoardID);
tbBoard.Columns.Add(BoardName);
tbBoard.Columns.Add(BoardClassID);
//设定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);
}
//构建父子关系
ds.Relations.Add("RelationBetweenClassAndBoard", ClassID, BoardClassID);
//从关系获取父表
DataTable dtParent = ds.Relations["RelationBetweenClassAndBoard"].ParentTable;
//从关系获取子表
DataTable dtChild = ds.Relations["RelationBetweenClassAndBoard"].ChildTable;
//构建输出字符串
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++)
{
//父表数据行开始
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]));
}
//父表数据结束
htmlStr.Append("</tr>");
//遍历表中所有行
for (int j = 0; j < dtParent.Rows[i].GetChildRows("RelationBetweenClassAndBoard").Length; 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]));
}
//子表数据行结束
htmlStr.Append("</tr>");
}
}
//表结束
htmlStr.Append("</table><br>");
Response.Write(htmlStr);
}
}
上述代码运行后的结果图如下:
从上面的代码可以看出,要创建DataRealation类型里要有两个表,为这两个表建立关系时必须要有一个相同数据类型。
除非注明,文章均为长沙
做网站公司原创,转载请以链接形式注明出处,谢谢。
本文地址:
http://www.csjwang.com/zwzzs/Datarelation-100/