1个回答
展开全部
楼主可能是要得到dataGridView中的选中行的id是吧?
if (dataGridView1.CurrentRow != null)
{
string id = dataGridView1.CurrentRow.Cells["id"].Value.ToString();
string sql = "delete ... where id =" + id;
...
}
if (dataGridView1.CurrentRow != null)
{
string id = dataGridView1.CurrentRow.Cells["id"].Value.ToString();
string sql = "delete ... where id =" + id;
...
}
更多追问追答
追问
这什么意思啊?我是想能在dataGridView里删除我显示的表的某一行,并且数据库能同步更新,还要能插入一行记录呢。
追答
if (dataGridView1.CurrentRow != null) //当前的选中行
{
string id = dataGridView1.CurrentRow.Cells["id"].Value.ToString();
string sql = "delete ... where id =" + id;
... //执行sql 更新数据库,也就是在数据表中删除选中的行
dataGridView1.Rows.Remove(dataGridView1.CurrentRow) // 这是ui上删除一行
}
至于你还要插入一行就不理解了。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询