我有小问题,我在form1中使用datagridview,我使用SQL命令从form2插入数据,但是在按钮单击后包含INSERT命令后,新插入的值不会出现在form1的datagridview中。有什么方法可以解决这个问题吗?
所以我必须在form1中创建刷新按钮,这样每次插入内容时我都可以刷新它。
提前致谢。
这是在form2中单击按钮时的插入代码: private void btn_zaj_uloz_Click(object sender,EventArgs e) {
SqlCommand prikaz = new SqlCommand
("INSERT INTO zajezd(akce,name,zeme,hotel,h_adresa,odjdate,pridate,pocdnu,pocnoc,klimax)values(@zakce,@zname,@zzeme,@zhotel,@zh_adresa,@zodjdate,@zpridate,@zpocdnu,@zpocnoc,@zklimax)", spojeni);
prikaz.Parameters.AddWithValue("zakce", zakce.Text);
prikaz.Parameters.AddWithValue("zname", zname.Text);
prikaz.Parameters.AddWithValue("zzeme", zzeme.Text);
prikaz.Parameters.AddWithValue("zhotel", zhotel.Text);
prikaz.Parameters.AddWithValue("zh_adresa", zh_adresa.Text);
prikaz.Parameters.AddWithValue("zodjdate", zodjdate.Text);
prikaz.Parameters.AddWithValue("zpridate", zpridate.Text);
prikaz.Parameters.AddWithValue("zpocdnu", zpocdnu.Text);
prikaz.Parameters.AddWithValue("zpocnoc", zpocnoc.Text);
prikaz.Parameters.AddWithValue("zklimax", zklimax.Text);
spojeni.Open();
prikaz.ExecuteNonQuery();
System.Data.DataTable dt = new System.Data.DataTable();
System.Data.SqlClient.SqlDataAdapter SDA = new System.Data.SqlClient.SqlDataAdapter("SELECT * FROM zajezd", spojeni);
SDA.Fill(dt);
spojeni.Close();
this.Close();
}
答案 0 :(得分:1)
有些代码。除非我遗漏了某些东西,否则代码片段会执行插入操作(没关系),然后读回所有数据,但对结果不做任何操作,因此Form1实际上从未意识到发生过任何事情。
您需要做的是如何通知Form1 Form2已完成其插入,并传回数据。网格应该有一些数据源来自显示行的位置,您需要在那里添加Form2中新创建的数据。 我能想到的最好的方法是在Form2上创建一个Form1将承载的事件,传递重新创建记录所需的所有数据。
首先创建事件处理程序数据:
public class InsertCompleteEventArgs : EventArgs
{
public string zakce {get;set;}
public string zname {get;set;}
/*other fields go here*/
}
在Form2中,声明事件:
public event EventHandler<InsertCompleteEventArgs> InsertComplete;
protected void OnInsertComplete(string zakce, string zname /*other data*/)
{
EventHandler<InsertCompleteEventArgs> handler = this.InsertComplete;
if(handler!=null)
{
handler(this,new InsertCompleteEventArgs(){zakce=zakce,zname=zname});
}
}
在你的代码中,替换额外的“SELECT * FROM zajezd”,改为提升事件:
This.OnInsertComplete(zakce.Text,zname.Text);
因此,Form2将在每次插入新记录时引发事件,因此任何感兴趣的人都可以知道何时更新自己。剩下要做的就是在启动Form2时从Form1中继承该事件:
public Button_Click(object sender, EventArgs e)
{
/* This will be your existing code when you show Form2 */
Form2 form=new Form2();
form.Insertcomplete += this.Form2_InsertComplete; //this is where the notification is requested
form.Show();
}
public Form2_InsertComplete(object sender, InsertCompleteEventArgs e)
{
/* From here you add the new record to the existing DataSource of the DataGridView using the properties of the "e" object you receive */
}