UDF 调用外部 C++ SQL Server 内部的代码

发布于 2024-11-11 18:23:22 字数 218 浏览 2 评论 0原文

假设我在 SQL Server 2008 中有一个 UDF:

Create function dbo.ReadXml (@xmlMatrix xml) returns table
as
return
( select
   --SOME C++ CODE
)
go
  • 是否可以在 UDF 中添加 C++ 代码或调用 C++ 函数?

Suposse I have an UDF in SQL Server 2008:

Create function dbo.ReadXml (@xmlMatrix xml) returns table
as
return
( select
   --SOME C++ CODE
)
go
  • Is it possible to add a c++ code or call a c++ function inside the UDF?

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

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

发布评论

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

评论(1

慕烟庭风 2024-11-18 18:23:22

仅当此 C++ 函数被编译并安装为 扩展存储过程
但扩展存储过程已被弃用,并将很快被删除。

因此,唯一可靠的选择是编写 CLR 函数。它可以是调用外部 C++ dll 的 C# CLR 函数,也可能是直接包含代码的托管 C++ CLR 函数。

Onyl if this C++ function was compiled and installed as an extended stored procedure.
But extended stored procedures are deprecated and will be removed soon.

So your only reliable option is to write a CLR function. It can be a C# CLR function that calls an external C++ dll, or it might be a managed C++ CLR function that would contain your code directly.

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