当我将数据插入我的数据库时,我的数据集(我的 telerik网格视图)不会更新我不知道我应该怎么做?
我在3层项目中,我的数据集在第一个,但我的插入代码在最后一个
这是我在第一层的代码
private void radButton1_Click(object sender, EventArgs e)
{
Ref_View_Model = new View_model._View_Model();
Ref_View_Model.GetAddCustomers(txtFName.Text, txtLName.Text, txtPhn.Text, txtDdrss.Text);
txtFName.Clear();
txtLName.Clear();
txtPhn.Clear();
txtDdrss.Clear();
txtFName.Focus();
MessageBox.Show("yore contact saved successfully", "Saved", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
这是我的第三层
public void AddCustomers(string _fName, string _lName, string _phone, string _address)
{
Connection_String = @"Data Source=MOSTAFA-PC;Initial Catalog=" + "Sales and Inventory System" + ";Integrated Security=TrueData Source=MOSTAFA-PC;Initial Catalog=" + "Sales and Inventory System" + ";Integrated Security=True;";
Con = new SqlConnection();
Con.ConnectionString = Connection_String;
Con.Open();
Cmd = new SqlCommand();
Cmd.Connection = Con;
Cmd.CommandType = CommandType.Text;
Cmd.CommandText = "insert into Customers(FName,LName,Phone,[Address])" +
"values ('" + _fName + "','" + _lName + "','" + _phone + "','" + _address + "')";
Cmd.ExecuteNonQuery();
Cmd.Dispose();
}
如何更新我的数据集?
答案 0 :(得分:0)
检查这个tuto
万维网。 youtube .com / watch?v = IcD9Jffstmw
删除链接中的空格