0

我有两张桌子

'Item Catagory' with fields

CatagoryId

CatagoryName

Items

带字段

ItemId

CatagoryId

现在Item Form我想Item在 A 中显示数据DataGridView

我想在 GridView 列中CatogoryName从表中显示ItemCatogory

目前我无法做到这一点,任何人都可以在这方面帮助我吗???

4

1 回答 1

1

您与 gridview 绑定的查询应该是这样的。

SELECT Items.ItemId, ItemCatogory.CatogoryName FROM Items JOIN ItemCatogory USING(CatagoryId)

这是执行此操作的示例代码:

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

然后

SqlDataAdapter da;
DataSet ds = new DataSet();
SqlCommand cmd = new SqlCommand();
static SqlConnection oc = new SqlConnection(@"Data Source=xxxx;Network Library=DBMSSOCN;Initial Catalog=xxxx;User Id=xxxx;Password=xxxx;");
cmd.CommandText = "SELECT Items.ItemId, ItemCatogory.CatogoryName FROM Items JOIN ItemCatogory USING(CatagoryId)";

oc.Open();
cmd.Connection = oc;
da = new SqlDataAdapter(cmd);
da.Fill(ds);
cmd.ExecuteNonQuery();

GridView1.DataSource = ds;

GridView1.DataBind();

oc.Close();
于 2013-02-20T13:16:32.770 回答