落雪成白草未殃 2016-09-15 05:22 采纳率: 100%
浏览 3458
已采纳

C#datagridview一次提交多行修改数据

我做好了修改C#datagridview的功能,但是只能每次修改一行,然后选择修改按钮
这样才能保存,如果同时修改多行,就只能保存最后一次修改的结果,可是我想修改多行,然后按修改按钮,能够同时修改多行数据。以下是我修改按钮中的代码:
private void button2_Click_1(object sender, EventArgs e)
{
//计划名称和计划时间
String jihuamingcheng = textBox1.Text;
String jihuashijian = dateTimePicker1.Value.Date.ToLongDateString();
//保存计划

        using (SqlConnection sqlcon = new SqlConnection(strcon))
        {
            sqlcon.Open();
            string id = this.dataGridView1.CurrentRow.Cells[0].Value + "";
            string riqi = this.dataGridView1.CurrentRow.Cells[1].Value + "";
            string neirong = this.dataGridView1.CurrentRow.Cells[2].Value + "";
            string wanchengdu = this.dataGridView1.CurrentRow.Cells[3].Value + "";


          //  string sql = "update " + jihuamingcheng + " set 创建时间='" + jihuashijian + "',内容='" + neirong + "',完成度='" + wanchengdu + "' where 项目号='" + id + "'";
           // SqlCommand command = new SqlCommand(sql, sqlcon);
           // myda = new SqlDataAdapter(command);
            //myset.Tables.Clear();
           // myda.Fill(myset, "" + jihuamingcheng + "");
            //dataGridView1.DataSource = myset.Tables["" + jihuamingcheng + ""];


            if (this.dataGridView1.DataSource != null)
            {
                DialogResult result = MessageBox.Show("确定将此次盘库数据保存至数据库?(存储前请务必核对准确)", "提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
                if (result == DialogResult.OK)
                {
                    for (int i = 0; i < dataGridView1.Rows.Count-1; i++)
                    {

                        string cmdInsert = String.Empty;
                        cmdInsert = "INSERT INTO " + jihuamingcheng + "(项目号,创建时间,内容,完成度)";
                        cmdInsert += "," + this.dataGridView1.Rows[i].Cells[2].Value + "";
                        cmdInsert += "," + this.dataGridView1.Rows[i].Cells[3].Value + "";

                    }


                }




            }
        }
        //刷新表


        using (SqlConnection sqlcon = new SqlConnection(strcon))
        {
            sqlcon.Open();


            string sql = "select * from "+jihuamingcheng+"";
            SqlCommand command = new SqlCommand(sql, sqlcon);
            myda = new SqlDataAdapter(command);
            myset.Tables.Clear();
            myda.Fill(myset, ""+jihuamingcheng+"");
            dataGridView1.DataSource = myset.Tables[""+jihuamingcheng+""];
        }






    }
  • 写回答

2条回答

  • 微wx笑 Java领域优质创作者 2016-09-16 01:37
    关注

    1、使用dataGridView本身的功能,与数据源绑定,将更新同步到数据表;
    2、自己编写代码检测修改了哪些行,更新到数据表;

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 用matlab 设计一个不动点迭代法求解非线性方程组的代码
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler
  • ¥15 oracle集群安装出bug
  • ¥15 关于#python#的问题:自动化测试