主頁 > 知識庫 > 使用DataAdapter填充多個表(利用DataRelation)的實例代碼

使用DataAdapter填充多個表(利用DataRelation)的實例代碼

熱門標簽:泰州手機外呼系統(tǒng)軟件 地圖標注位置多的錢 濟源人工智能電話機器人價格 內(nèi)蒙古智能電銷機器人哪家強 怎樣在地圖標注消火栓圖形 百度地圖標注點擊事件 杭州智能電話機器人 山東防封電銷卡辦理套餐 廈門四川外呼系統(tǒng)

Default.aspx

復(fù)制代碼 代碼如下:

View Code

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

!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 runat="server">
    title>無標題頁/title>
/head>
body>
    form id="form1" runat="server">
    div>

    /div>
    asp:Label ID="lbText" runat="server">/asp:Label>
    /form>
/body>
/html>

Default.aspx.cs

復(fù)制代碼 代碼如下:

using System;
using System.Configuration;
using System.Data;
using System.Linq;
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.Xml.Linq;

using System.Data.SqlClient;
using System.Text;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        string connectionString = ConfigurationSettings.AppSettings["strCon"];
        SqlConnection mycon = new SqlConnection(connectionString);//創(chuàng)建數(shù)據(jù)庫連接
        string sqlCategory = "select ID,C_Name from Photo_Category";//查詢相冊分類表中信息
        string sqlPhoto = "select CategoryID,Title from Photo";//查詢相冊表中信息
        SqlDataAdapter da = new SqlDataAdapter(sqlCategory, mycon);//創(chuàng)建數(shù)據(jù)適配器
        DataSet ds = new DataSet();//創(chuàng)建數(shù)據(jù)集
        try
        {
            if (mycon.State.Equals(ConnectionState.Closed))
            { mycon.Open(); }//顯式地打開數(shù)據(jù)庫連接
            da.Fill(ds, "Photo_Category");//填充相冊分類表
            da.SelectCommand.CommandText = sqlPhoto;
            da.Fill(ds, "Photo");//填充相冊信息表
        }
        finally
        {
            mycon.Close();//顯式地關(guān)閉數(shù)據(jù)庫連接
        }
        //創(chuàng)建DataRelation對象,關(guān)聯(lián)表間關(guān)系
        DataRelation relat = new DataRelation("Photo_Category",  ds.Tables["Photo_Category"].Columns["ID"],ds.Tables["Photo"].Columns["CategoryID"]);
        ds.Relations.Add(relat);//添加表間關(guān)系
        StringBuilder builder = new StringBuilder("");
        foreach (DataRow row in ds.Tables["Photo_Category"].Rows)
        {
            builder.Append("b>");
            builder.Append(row["C_Name"].ToString());
            builder.Append("/b>ul>");
            DataRow[] childRows = row.GetChildRows(relat);
            foreach (DataRow childRow in childRows)
            {
                builder.Append("li>");
                builder.Append(childRow["Title"].ToString());
                builder.Append("/li>");
            }
            builder.Append("/ul>");
        }
        lbText.Text += builder.ToString();//將運行結(jié)果輸出到頁面中
    }

}

標簽:朝陽 新鄉(xiāng) 洛陽 喀什 百色 臺州 朔州 周口

巨人網(wǎng)絡(luò)通訊聲明:本文標題《使用DataAdapter填充多個表(利用DataRelation)的實例代碼》,本文關(guān)鍵詞  使用,DataAdapter,填充,多個,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《使用DataAdapter填充多個表(利用DataRelation)的實例代碼》相關(guān)的同類信息!
  • 本頁收集關(guān)于使用DataAdapter填充多個表(利用DataRelation)的實例代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章