如何使用 Sequel 获取更新后受影响的行数?

发布于 2024-10-04 10:16:50 字数 167 浏览 3 评论 0原文

更新数据后是否可以获得受影响的行数?

这里有一个例子:

count = table_products.where(:status => 1).update(:status => 0) # is sth like this possible?

Is it possible to get the number of affected rows, after updating data?

Here a example:

count = table_products.where(:status => 1).update(:status => 0) # is sth like this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

心是晴朗的。 2024-10-11 10:16:50

你尝试过吗?文档说 update 实际上返回受影响的行数:

返回值一般是
更新的行数,但那是
依赖于适配器。

我没有 MySQL 来检查它是否真的有效,但如果不起作用,我想这取决于 MySQL,而不是 Sequel。

Have you tried it? Docs say that update actually returns the number of affected rows:

The returned value is generally the
number of rows updated, but that is
adapter dependent.

I don't have MySQL to check whether it actually works, but if it doesn't, I guess it's up to MySQL, not Sequel.

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