SQL存储过程可以调用.NET对象吗?
SQL 存储过程是否可以调用 .NET 对象?在我的情况下,我需要获取一个字符串参数并返回一个可由我的安全客户端使用的哈希结果。
我可以根据每个结果调用此 SP(每行一次),也可以返回多行。这完全取决于 SQL 将支持我做什么。
Is it possible for a SQL Stored Procedure to call a .NET object? In my situation, I need to take a string parameter and return a hashed result that can be consumed by my secure client.
I can either have this SP called on a per result basis (once per row), or I can possibly return multiple rows. It all depends on what SQL will support me doing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SQL Server 2005 将 CLR 引入到服务器中。这允许您编写 .NET 函数并从 SQL Server 存储过程中调用它们。
阅读此指南了解如何在 SQL Server 中创建和使用 CLR。
这适用于 SQL Server 2005 及更高版本。
SQL Server 2005 introduced CLR into the server. This allows you to write .NET functions and call them from within SQL Server stored procedures.
Read this howto on how to create and use CLR within SQL Server.
This will work in SQL Server 2005 and above.
您可以使用 Sql Clr< 在 C# 中编写 sql 存储过程/a> 这将允许调用.Net 对象。
You can write sql stored procedure in C# by using Sql Clr which will allow to call .Net object.