DataSet中的表动态设置主键外键的方法

Posted 杰的记事本——javascript.shop

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DataSet中的表动态设置主键外键的方法相关的知识,希望对你有一定的参考价值。

原文发布时间为:2008-08-01 —— 来源于本人的百度文章 [由搬家工具导入]

protected void pk_Click(object sender, EventArgs e)
    {
        //设置主键
        DataSet ds = new DataSet();
        ds = (DataSet)Session["ds"];

       UniqueConstraint uc = new UniqueConstraint("userpk", ds.Tables["user"].Columns["uid"],true);
        ds.Tables["user"].Constraints.Add(uc);
       
        Session["ds"] = ds;
   
    }

    protected void fk_Click(object sender, EventArgs e)
    {//设置外键
       
        DataSet ds = new DataSet();
        ds = (DataSet)Session["ds"];
       ForeignKeyConstraint fkc = new ForeignKeyConstraint("userfk", ds.Tables["user"].Columns["uid"], ds.Tables["book"].Columns["bid"]);
        ds.Tables["book"].Constraints.Add(fkc);
        Session["ds"] = ds;

    }


以上是关于DataSet中的表动态设置主键外键的方法的主要内容,如果未能解决你的问题,请参考以下文章

MySQL基础之 主键外键设置

day2mysql主键外键自增

SSMS设置主键/主键组/外键

在MySQL中如何设置主键和外键

数据库之主键外键

sql server的主键与外键问题