设想: 我只想更新我的数据库,介绍用户对其信息所作的改动。 我的守则是:
SqlCommandBuilder cb = new SqlCommandBuilder(da);
dt.Rows[0][2] = txtname.Text;
dt.Rows[0][3] = txtinterests.Text;
dt.Rows[0][4] = txtlocation.Text;
da.SelectCommand = new SqlCommand(sqlcommand, conn);
da.Update(dt);
我知道它会是显而易见的,但我错了什么? 没有任何错误,所有文件都正确汇编,但没有发生。 本记录可以更正。