update就是update,这是sql代码,就算是C#也是连接到SQLServer而执行的,所以这语句跟在数据库中直接执行的没什么区别。你的这个问题,恐怕得找找其他原因了。
比如页面中的其他元素,或把你的这个update语句贴出来看看吧。
比如你想更改student表中的学号为1001学生所在班级
stu_num为int型时代码:
string strSql="Update student set stu_class='"+txtClass.Text.Trim()+"' where stu_num=1001";
stu_num为字符串类型时的代码
string strSql="Update student set stu_class='"+txtClass.Text.Trim()+"' where stu_num='1001'";
请问楼主后来是怎么解决的呀?谢谢~~
把语句贴出来看看吧!