zoukankan      html  css  js  c++  java
  • DataSet 多表关系

    protected void Page_Load(object sender, EventArgs e)
    {
        string connectionString = @"Data Source=.;Initial Catalog=Pubs;Integrated Security=SSPI";
        string selectSQL = "SELECT au_lname, au_fname, au_id FROM Authors";
        SqlConnection con = new SqlConnection(connectionString);
        SqlCommand cmd = new SqlCommand(selectSQL, con);
        SqlDataAdapter adapter = new SqlDataAdapter(cmd);
        DataSet dsPubs = new DataSet();
        try
        {
            con.Open();
            adapter.Fill(dsPubs, "Authors");
            cmd.CommandText = "SELECT au_id, title_id FROM TitleAuthor";
            adapter.Fill(dsPubs, "TitleAuthor");
            cmd.CommandText = "SELECT title_id, title FROM Titles"; adapter.Fill(dsPubs, "Titles");
            //多对多关系 
            DataRelation Titles_TitleAuthor = new DataRelation("Titles_TitleAuthor", dsPubs.Tables["Titles"].Columns["title_id"], dsPubs.Tables["TitleAuthor"].Columns["title_id"]);
            DataRelation Authors_TitleAuthor = new DataRelation("Authors_TitleAuthor", dsPubs.Tables["Authors"].Columns["au_id"], dsPubs.Tables["TitleAuthor"].Columns["au_id"]);
            dsPubs.Relations.Add(Titles_TitleAuthor); dsPubs.Relations.Add(Authors_TitleAuthor);
            foreach (DataRow rowAuthor in dsPubs.Tables["Authors"].Rows)
            {
                lblList.Text += " " + rowAuthor["au_fname"]; lblList.Text += " " + rowAuthor["au_lname"] + " ";
                foreach (DataRow rowTitleAuthor in rowAuthor.GetChildRows(Authors_TitleAuthor))
                {
                    DataRow rowTitle = rowTitleAuthor.GetParentRows(Titles_TitleAuthor)[0];
                    lblList.Text += "  ";
                    lblList.Text += rowTitle["title"] + " ";
                }
            }
        }
        catch (Exception err)
        {
            lblList.Text = "Error reading list of names. ";
            lblList.Text = err.Message;
        }
        finally
        {
            con.Close();
        }
    }
  • 相关阅读:
    ubuntu shell插件
    通过更改服务器解决双系统ubuntu时间+8
    ubuntu安装mysql遇到的问题
    05 面向对象:构造方法&static&继承&方法 &final
    electron 大体结构
    js时间Date对象介绍及解决getTime转换为8点的问题
    Fiddler命令行和HTTP断点调试
    使用HTTP头去绕过WAF(bypasswaf)
    Linux下php5.3.3安装mcrypt扩展
    Error: Cannot find a valid baseurl for repo: epel
  • 原文地址:https://www.cnblogs.com/wanghaibin/p/3872087.html
Copyright © 2011-2022 走看看