SqlDependency,它是如何工作的?

发布于 2024-12-01 06:55:21 字数 209 浏览 1 评论 0原文

使用SqlDependency,我们不需要使用计时器来检查数据是否更改。

然而它是如何运作的呢?如果数据改变了,sql server 会通知我们,对吗?

如果我们有一个与 2 个表相关的查询:TabA 和 TabB,数据库中有 100 个表。当TabA或TabB中的数据发生更改时,sql服务器会通知我们。但是如果TabC中的数据改变了,sql server会通知我们吗?

Using SqlDependency, we no need to use a timer to check if data is changed.

However how does it work? If the data changed, the sql server notify us, right?

If we have a query related to 2 tables: TabA and TabB in a database which contains 100 tables. When the data in TabA or TabB is changed, the sql server notify us. However if the data in TabC is changed, will the sql server notify us?

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

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

发布评论

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

评论(1

金橙橙 2024-12-08 06:55:21

我认为您不会收到有关 TabC 更改的通知。

引用自使用 SqlDependency (ADO.NET) 检测更改

SqlDependency 对象可以与 SqlCommand 关联,以便
检测查询结果何时与最初检索到的结果不同。

I don't think you will get notified of changes to TabC.

Quote from Detecting Changes with SqlDependency (ADO.NET)

A SqlDependency object can be associated with a SqlCommand in order to
detect when query results differ from those originally retrieved.

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