请教,我这个为什么更新不了?
我有一个数据库,里面有id,username,usepwd几个字段。我用
"select id as '编号',username as '姓名',usepwd as '密码' from login where username='gg'"; 建了一个dataset。里面的gg是不存在的。只是为了建立一个结构,然后用dataset和datagrid关联后。我输入新的数据后,用以下方法为什么不能更新啊,哪位能帮忙?
conn.Open();
dt.Tables[0].AcceptChanges();
da.Update(dt.Tables[0].GetChanges());
conn.Close();