我可以通过 SQL Server 触发器调用 C# 函数吗?
外部应用程序进入我的数据库以在 Sql 服务器表中插入行。
我自己有一个网络应用程序,我想在这个表中的每个插入中,在服务器端进行一些处理。
我的想法是在表上插入时创建一个触发器,然后调用适当的函数。
最好的方法是什么?
我使用带有 LINQ to SQL 的框架 3.5 和 SQL Server 2005 数据库。
编辑:谢谢您的回答。 SQL Server CLR 集成无法做到这一点。支持的少数库不能满足我的要求。
我必须记录的表可能每 5 分钟就会记录一条新记录,但不会太多。 也许我可以有一份工作,每分钟都在桌子旁监听,查看身份证,拿走所有新身份证,进行治疗。 我的解决方案是不是太难看了?
An external application come to my database for inserting row in a Sql server table.
I have a web application on my own, and I want on each insert in this table, do some treatement server side.
My idea is to create a trigger on insert on the table, and then call appropriate function.
What is the best way to do this ?
I use framework 3.5 with LINQ to SQL, and a SQL Server 2005 database.
Edit : Thank you for the answers.
SQL Server CLR integration doesn't do it. The few libraries supported doesn't meet me requirement.
The table I have to log will take a new record every 5 minutes perhaps, not so much.
Maybe I can have a job listening at the table every minute, look at the ID, take all the new ID, do my treatement.
Is my solution not too ugly ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 SQL服务器 CLR 集成。
Use SQL Server CLR integration.
如果您的函数需要很长时间才能运行,或者要访问不属于同一数据库的资源,您可能需要考虑将函数调用与触发器解耦(以便导致触发触发器的原始语句火即可完成)。
在这种情况下,您可能需要查看 Service Broker,或者仅使用单独的表对调用该函数的请求进行排队(并使用 SQL 代理作业将这些请求出列并调用该函数)。
If your function is going to take a long time to run, or going to access resources which aren't part of the same database, you might want to consider decoupling the function call from the trigger (so that the original statement that caused the trigger to fire can complete).
In that case, you might want to look at Service Broker, or just use a separate table to queue the requests to call the function (and use a SQL Agent job to dequeue these requests and call the function).