当传递包含已删除行的 DataRow 集合时,更新需要有效的删除命令

发布于 2024-10-03 06:22:24 字数 158 浏览 3 评论 0原文

尝试从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

自在安然 2024-10-10 06:22:24

我是如何解决这个问题的:

  1. 在我的SQL中设置主键
  2. 在SQL Server对象资源管理器中找到您的表,确保同一列设置了主键
  3. 在解决方案资源管理器中,右键单击您的数据集,视图设计器,确保您的表同一列设置了主键
  4. 保存全部,必须确保全部保存!
  5. 重建,完成。

That how I fixed it:

  1. In my SQL set Primary Key
  2. In SQL Server Object Explorer find your table, ensure same column has set a primary key
  3. In Solution Explorer, right click your DataSet, View Designer, ensure your table same column set a primary key
  4. save all, must ensure all are saved!
  5. rebuild, done.
反话 2024-10-10 06:22:24

我浏览了几个论坛,发现我们需要遵循以下步骤来消除此错误:
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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文