找传奇、传世资源到传世资源站!

DataGridView 直接修改数据

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

     在C#的DataGrid中直接修改数据。 DataGridView 直接修改数据 C#数据库操作-第1张DataGridView 直接修改数据 C#数据库操作-第2张 private void dgvBind()
        {
            SqlConnection mycon = GetConnection();
            try
            {
                mycon.Open();
                SqlDataAdapter sda = new SqlDataAdapter("select * from mytable001", mycon);
                DataTable table = new DataTable();
                sda.Fill(table);
                this.dataGridView1.AutoGenerateColumns = true;
                this.dataGridView1.DataSource = table;
                this.dataGridView1.EditMode = DataGridViewEditMode.EditOnEnter;

            }
            catch(Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
            finally
            {
                mycon.Close();
            }
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            dgvBind();
        }

        private void dataGridView1_CellValueChanged(object sender, DataGridViewCellEventArgs e)
        {
            SqlConnection mycon = GetConnection();
            try
            {
                mycon.Open();

                string mystr1=dataGridView1.Columns[e.ColumnIndex].HeaderText "=" "'" dataGridView1.CurrentCell.Value.ToString() "'";
                string mystr2=dataGridView1.Rows[e.RowIndex].Cells[0].Value.ToString();
                string updateSql = "update mytable001 set " mystr1 " where id=" mystr2;
                SqlCommand mycom = new SqlCommand(updateSql, mycon);
                mycom.ExecuteNonQuery();
                dgvBind();

            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
            finally
            {
                mycon.Close();
            }

        }
    }

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复