如何在 c# 中编辑将使用 3 层架构更新数据库的 datagridview。有人可以分享代码示例,因为我是这个 3 层概念的新手。
问问题
2027 次
1 回答
0
有点长,但我会试试=)
假设您除了将数据带到 DataGridView 之外没有其他逻辑,因此逻辑层函数只是调用数据层函数。
现在在这个示例中,我们有一个包含 2 个 dgv 的表单,一个用于订单详细信息(只读),第二个用于特定订单的行 - 在此 dgv 中,我们为产品添加一个 ComboBox 和一个用于保存的按钮。
在表单加载时,我称之为简单的函数,
private void setOrderGridView()
{
BindingSource orderSrc = new BindingSource(logic.GetOrderDetailsDS(FrmOrder.currentOrderID), "tblOrders");
dgvOrdrdtls.DataSource = orderSrc;
var src = logic.GetProductTable();
BindingSource detailSrc = new BindingSource(orderSrc, "orderdetails");
dgvLines.DataSource = detailSrc;
DataGridViewComboBoxColumn pr = new DataGridViewComboBoxColumn();
pr.HeaderText = "Product";
pr.Name = "product";
pr.DataSource = src;
pr.ValueMember = "pdctId";
pr.DisplayMember = "prdctDsc";
pr.DataPropertyName = "ordrPrdctid";
dgvLines.Columns.Add(pr);
}
下面你会看到函数GetOrderDetailsDS(..)
,GetProductTable()
所有这些都是为了加载 dgv,在你完成输入或编辑 DGV 后,btnSave_Click(..)
调用SaveChanges()
func。
野兔 DAL 代码。
public class DALimp : iDAL
{
string connStr;
SqlConnection conn;
SqlCommand cmd;
DataSet ds;
SqlDataAdapter da;
public DALimp()
{
connStr = ConfigurationManager.ConnectionStrings["StoreDBConnectionString"].ConnectionString;
conn = new SqlConnection(connStr);
}
public DataSet GetOrderDetailsDS(int oId)
{
var select = "SELECT * FROM tblOrders WHERE orderId='"+oId+"'";
ds = new DataSet();
cmd = new SqlCommand(select, conn);
try
{
conn.Open();
ds.Load(cmd.ExecuteReader(), LoadOption.OverwriteChanges, "tblOrders");
}
catch (Exception ex)
{ throw ex; }
finally
{ conn.Close(); }
return ds;
}
public DataTable GetProductTable()
{
cmd = new SqlCommand("SELECT * FROM tblProducts", conn);
da = new SqlDataAdapter("SELECT * FROM tblorderLines", conn);
da.InsertCommand = new SqlCommand("INSERT INTO tblorderLines (ordrNumid,ordrPrdctid,ordrQuantity) Values(@oid,@pid,@qnt)", conn);
da.InsertCommand.Parameters.Add("@oid", SqlDbType.Int, 0, "ordrNumid");
da.InsertCommand.Parameters.Add("@pid", SqlDbType.Int, 0, "ordrPrdctid");
da.InsertCommand.Parameters.Add("@qnt", SqlDbType.SmallInt, 0, "ordrQuantity");
try
{
conn.Open();
ds.Load(cmd.ExecuteReader(), LoadOption.OverwriteChanges, "tblProducts");
da.Fill(ds, "tblorderLines");
ds.Relations.Add("orderdetails", ds.Tables["tblOrders"].Columns["orderId"], ds.Tables["tblorderLines"].Columns["ordrNumid"], false);
}
catch (Exception ex)
{ throw ex; }
finally
{ conn.Close(); }
return ds.Tables["tblProducts"];
}
public bool SaveChanges()
{
try
{
if (ds.Tables["tblorderLines"].GetChanges() == null)
return false;
var update = "UPDATE tblorderLines SET ordrNumid= @oni, ordrPrdctid= @opi, ordrQuantity= @oq WHERE ordritmId= @oii";
var cmd = new SqlCommand(update, conn);
cmd.Parameters.Add("@oni", SqlDbType.Int, 4, "ordrNumid");
cmd.Parameters.Add("@opi", SqlDbType.Int, 4, "ordrPrdctid");
cmd.Parameters.Add("@oq", SqlDbType.SmallInt, 2, "ordrQuantity");
cmd.Parameters.Add("@oii", SqlDbType.BigInt, 8, "ordritmId").SourceVersion = DataRowVersion.Original;
da.UpdateCommand = cmd;
da.Update(ds, "tblorderLines");
return true;
}
catch (Exception ex)
{ throw ex; }
}
}
希望我对我的英语有所帮助和抱歉=)
注意有些人不希望在 PresentationLayer 中看到任何表格、单元格或关系的名称,因此他们将根据需要添加其他功能。
于 2013-05-07T19:36:25.273 回答