如何在Windows窗体应用程序中通过DataGridView在数据库中插入数据

时间:2013-08-23 10:18:58

标签: c# datagridview

我在c#中创建一个Windows窗体应用程序,其中有一个绑定到SQL Server数据库的网格视图控件。所有想要的是,让用户按下CTRL + N并将新行显示为网格视图的第一行,并且在输入该行中的数据时,应通过按Enter键和所有验证检查将数据插入数据库。为此,我使用文本框,但不知道如何使用网格视图。

 private void btnsave_Click(object sender, EventArgs e)
    {
        try
        {
            SqlCommand cmd = DataConnection.GetConnection().CreateCommand();
            cmd.CommandText = "insert into CustomerMaster(CustId,Name,City,State,Pin,ContactInfo) values(@custid,@name,@city,@state,@pin,@contactinfo)";
            cmd.Parameters.Add(new SqlParameter("@custid", txtcustid.Text));
            cmd.Parameters.Add(new SqlParameter("@name", txtname.Text));
            cmd.Parameters.Add(new SqlParameter("@city", txtcity.Text));
            cmd.Parameters.Add(new SqlParameter("@state", txtstate.Text));
            cmd.Parameters.Add(new SqlParameter("@pin", txtpin.Text));
            cmd.Parameters.Add(new SqlParameter("@contactinfo", txtcontactinfo.Text));

            bool ans = cmd.ExecuteNonQuery() > 0;
            if (ans)
            {
                MessageBox.Show("Insertion Happens Successfully");

            }
            else
            {
                MessageBox.Show("Insertion doesnot Happens");
            }
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
        }


    }

1 个答案:

答案 0 :(得分:0)

您有多个问题。我将回答“如何添加空行”一个。

为此在填充数据集之后,在将其绑定到网格之前,您应该在此数据集的顶部添加一个空行。

' insert a blank row at the top
  Dim dr As DataRow = MyGrid.Tables(0).NewRow()
  dr("MyFiled") = "0"
  MyGrid.Tables(0).Rows.InsertAt(dr, 0)

互联网上有很多文章展示了如何保存数据。如果您遇到问题,请在此处填写您的具体代码。