众所周知用.net的
SqlDataAdapter ap = new SqlDataAdapter();
ap.SelectCommand = cmm;
SqlCommandBuilder cb = new SqlCommandBuilder(ap);
.........
.........
ap.Update(ds,"student");这样就可以修改数据了,
但是如果是该用户要Update的一条记录被另一个用户提前删除了,那样就会出错,
遇到这种情况应该怎样处理呢?