如何从 .NET 监听 Pervasive Database 事件
我想使用 .Net 监听普遍数据库表上发生的变化...
例如:
我有一个客户表,其中有一列为电话号码。
我想知道如何监听客户表上任何记录的电话号码列的更改。
我更喜欢使用.Net,但如果需要的话我不介意使用其他东西。
我的最终目标是捕获此信息并通过 HTTP POST 将其发送到另一台服务器。
谢谢!
I would like to listen to changes happening on a pervasive database table using .Net...
For example:
I have a Client table with a column for Phone Number.
I would like to know how to listen for changes to the Phone Number column for any record on the Client Table.
I would prefer to use .Net, but I do not mind using something else if need be.
My end goal is to catch this information and send it to another server via an HTTP POST.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果不使用 数据交换(复制)或 <来自 Pervasive 的 href="http://pervasivedb.com/auditmaster/Pages/Default.aspx" rel="nofollow">Audit Master(审核)。
如果(这是一个很大的假设)您的应用程序仅使用 SQL 引擎,您也许可以创建一个触发器,将记录写入另一个表,然后在 .NET 应用程序中查找该表中的记录并根据需要进行处理。
Audit Master 可能会做与您想要的类似的事情。它可以配置为在发生跟踪操作时发送电子邮件或运行程序。
There's no way to hook into the Pervasive engine directly without using Data Exchange (replication) or Audit Master (auditing) from Pervasive.
If, and it's a big if, your application uses only the SQL engine you might be able to create a Trigger that writes a record to another table and then in a .NET application look for records in that table and do with it as you want.
Audit Master would probably do something similar to what you want. It can be configured to send an email or run a program when a tracked operation occurs.