当传递包含已删除行的 DataRow 集合时,更新需要有效的删除命令
尝试从 SQL Server CE 3.5 数据库中删除数据时,出现错误:
当传递包含已删除行的 DataRow 集合时,更新需要有效的删除命令”
虽然 Access 数据库可以。
请告知。谢谢!
While trying to delete the data from my SQL Server CE 3.5 database, I am getting error:
Update requires a valid DeleteCommand when passed DataRow collection with deleted rows"
While it is ok with Access database.
Please advise. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我是如何解决这个问题的:
That how I fixed it:
我浏览了几个论坛,发现我们需要遵循以下步骤来消除此错误:
1)在数据库中添加一个字段,例如PK,
2)数据类型Bigint,然后将Primary Key属性设置为Yes
在下部网格中,您将看到身份归档已启用。默认情况下为 False。
3) 让它成为现实。
4) IdentityIncrement 和 IdentitySeed 应包含值 1
错误应得到解决。
I browsed through several forums and found that we need to follow following to get rid of this error:
1) Add a field in database, say PK,
2) Data Type Bigint, then set Primary Key property to Yes
In the lower grid you will see Identity filed getting enabled. By default it is False.
3) Make it True.
4) IdentityIncrement and IdentitySeed should contain the value 1
The error shall be resolved.