0

我正在向 Winforms 中的数据库添加、删除和更新数据。我在所有添加、删除和更新表单上都有 gridview。单击“删除”按钮删除记录后,删除的记录应立即从 dataGridView 中删除。

////请注意,DATABIND 给出错误,即缺少使用或程序集引用。

代码背后:

    private void btnDelete_Click(object sender, EventArgs e)
    {

        if (txtIDD.Text == "")
        {
            MessageBox.Show("Please fill ID no. of record to Delete", "Important Message");

        }
        else
        {
            try
            {
                OleDbCommand Cmd = new OleDbCommand();
                Cmd.Connection = conn;
                conn.Open();
                Cmd.CommandText = "DELETE FROM AddressBook WHERE ID="+txtIDD.Text;
                Cmd.CommandType = CommandType.Text;
                Cmd.ExecuteNonQuery();
                Cmd.Connection.Close();
                conn.Close();
                dataGridView3.Update();
                MessageBox.Show("Delete Succesfull");
            }
            catch (System.Exception err)
            {
                  dataGridView3.DataSource = dt;
                  dataGridView3.DataBind();
                  dataGridView3.Update();

                this.label27.Visible = true;
                this.label27.Text = err.Message.ToString();
            }
        }

    }
4

2 回答 2

0

在添加、更新和删除等操作后,再次绑定网格以从数据库中获取值。

private void btnDelete_Click(object sender, EventArgs e)
{

    if (txtIDD.Text == "")
    {
        MessageBox.Show("Please fill ID no. of record to Delete", "Important Message");

    }
    else
    {
        try
        {
            OleDbCommand Cmd = new OleDbCommand();
            Cmd.Connection = conn;
            conn.Open();
            Cmd.CommandText = "DELETE FROM AddressBook WHERE ID="+txtIDD.Text;
            Cmd.CommandType = CommandType.Text;
            Cmd.ExecuteNonQuery();
            Cmd.Connection.Close();
            conn.Close();                

            **//Call a method that binds the grid or get DataTable from database and bind it like this**
             dataGridView3.DataSource = dt;               
            dataGridView3.Update();

            MessageBox.Show("Delete Succesfull");
        }
        catch (System.Exception err)
        {
            this.label27.Visible = true;
            this.label27.Text = err.Message.ToString();
        }
    }
}
于 2012-07-04T09:38:17.937 回答
-2

创建一个函数,您可以在其中重新加载网格

private method ReloadGrid()
{
   // first load your datatable/dt then set it as the datasource of your grid
   dataGridView3.DataSource = dt;
   dataGridView3.DataBind();

}
于 2012-07-04T09:43:03.477 回答