C# 如何删除DataGridView选中dataset的某行
我用一个dataGridView来显示数据。怎么从dataset中删掉我在gridView中选中的行呢?dataGridView.SelectedRows[0]这个得到的...
我用一个dataGridView来显示数据。怎么从dataset中删掉我在gridView中选中的行呢?dataGridView.SelectedRows[0]这个得到的是什么东西?productDataSet.ProductData.RemoveProductDataRow(productDataDataGridView.SelectedRows[0]);
为什么我不能用以上的句子删掉选中行呢?
另外我是用这个句子来更新数据库 productDataTableAdapter.Update(productDataSet); 展开
为什么我不能用以上的句子删掉选中行呢?
另外我是用这个句子来更新数据库 productDataTableAdapter.Update(productDataSet); 展开
4个回答
2013-07-14
展开全部
要用到它的事件的 行绑定事件
protected void gvMemberList_RowCommand(object sender, GridViewCommandEventArgs e)
{
string cmd = e.CommandName.ToString();
int 条件= Int32.Parse(e.CommandArgument.ToString());
if (cmd == "del")
{
SqlHelper sqlh = new SqlHelper();
int count = sqlh.ExecuteNonQuery("delete from 表 where 条件= " + e.CommandArgument.ToString());
if (count > 0)
{
SetDataBind();
}
}
}
删除的话 你是用的 tableAdapter 么? 那就不用写什么方法啦
直接拖拖就出来了
protected void gvMemberList_RowCommand(object sender, GridViewCommandEventArgs e)
{
string cmd = e.CommandName.ToString();
int 条件= Int32.Parse(e.CommandArgument.ToString());
if (cmd == "del")
{
SqlHelper sqlh = new SqlHelper();
int count = sqlh.ExecuteNonQuery("delete from 表 where 条件= " + e.CommandArgument.ToString());
if (count > 0)
{
SetDataBind();
}
}
}
删除的话 你是用的 tableAdapter 么? 那就不用写什么方法啦
直接拖拖就出来了
2013-07-14
展开全部
每行都会有个DATAKEY值(一般都是设置的主键值) 你获取你选中行的索引后 通过索引再获取到该行的DATAKEY值 然后再通过你的SQL语句进行删除就OK了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-07-14
展开全部
这种情况我也做了好久,现在才知一个表必须要有一个主键,这是最重的!!删除方法有很多种,用哪种都不重要,表必须有主键……
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-07-14
展开全部
有没有报错?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询