如何更改DataRow值?
可能的重复:
无法更改 DataRow 值
我有二维 datarow 数组 像这样
Datarow Mydatarow [][] = new Datarow[5][5] ;
和初始 Mydatarow
表单数据库... 现在我想执行此代码并更改 Mydatarow
值
Mydatarow [Index][i].ItemArray[3]= "S";
我使用此代码来更改 Mydatarowvalue
但它不起作用,
Mydatarow [Index][i].BeginEdit();
Mydatarow [Index][i].SetModified();
Mydatarow [Index][i].ItemArray[3]= "S";
Mydatarow [Index][i].EndEdit();
Mydatarow [Index][i].AcceptChanges();
请帮助我更改 datarow 值
Possible Duplicate:
Unable to change DataRow value
I have the Two-dimensional datarow array
like this
Datarow Mydatarow [][] = new Datarow[5][5] ;
and initial Mydatarow
form database ...
Now I Want to do this code and change Mydatarow
value
Mydatarow [Index][i].ItemArray[3]= "S";
I use This Code to change Mydatarowvalue
But it dos'nt work
Mydatarow [Index][i].BeginEdit();
Mydatarow [Index][i].SetModified();
Mydatarow [Index][i].ItemArray[3]= "S";
Mydatarow [Index][i].EndEdit();
Mydatarow [Index][i].AcceptChanges();
please help me to change datarow value
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在声明数组时遇到问题:
应该是
这样:
You have a problem with declaring the array:
should be
So: