本文介绍了如何在更新数据库sql之后更新数据datagridview c#的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 cmd.CommandType = CommandType.Text; cmd.Connection = sqlcon; cmd = new SqlCommand("update TBL_InvoicContent set pid='" + txtpid.Text + "',remainder='" + txtremainder.Text + "' where id_invoice= " + txtidincon.Text + " and fk_id_product = " + txtidItems.Text + " ", sqlcon); sqlcon.Open(); cmd.ExecuteNonQuery(); MessageBox.Show("Edited"); sqlcon.Close(); 推荐答案 这篇关于如何在更新数据库sql之后更新数据datagridview c#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 09-15 19:56