从 SQL 存储过程调用方法(来自 .net 托管 dll) - 帮助

发布于 2024-08-28 23:45:50 字数 647 浏览 13 评论 0原文

我们想要从 (SQL Server 2005/2008) 中的存储过程调用 .NET 托管代码(部署为 dll)

我们找到了几个解决方案,但无法使其工作:

  1. 按照文章中提到的步骤这个地方http://www32.brinkster.com/srisamp/sqlArticles/article_33.htm< /a> - 给我们留下以下错误代码: 0x80131700

  2. 在另一篇文章中,提到为此错误创建 COM+ 服务器应用程序,但在我们的环境中这是不可能的。 http://www.sqlnewsgroups.net/group/microsoft。 public.sqlserver.server/topic16144.aspx

是否有正确记录的&尝试过解决这个问题吗?

We wanted to call a .NET Managed code (deployed as dll) from a Stored Procedure in (SQL Server 2005/2008)

We found couple of solutions, but couldn't get it working:

  1. Following steps mentioned in the article at this place http://www32.brinkster.com/srisamp/sqlArticles/article_33.htm - leaves us with following error code:
    0x80131700

  2. In another article, it was mentioned to create COM+ server application for this error, but that is not possible in our environment.
    http://www.sqlnewsgroups.net/group/microsoft.public.sqlserver.server/topic16144.aspx

Is there a properly documented & tried out solution for this?

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

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

发布评论

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

评论(1

油饼 2024-09-04 23:45:50

我们通过在 SQL Server 中包含一个程序集并生成实际上是该程序集 (dll) 的方法的存储过程来完成此操作,

请参阅 http://msdn.microsoft.com/en-us/library/ms254956(VS.80).aspx 了解有关 SQLCLR 的更多详细信息

We have done this by including an assembly in the SQL Server, and generating stored procedure that IS in fact a method of this assembly (dll)

See http://msdn.microsoft.com/en-us/library/ms254956(VS.80).aspx for more details about SQLCLR

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