UDF 调用外部 C++ SQL Server 内部的代码
假设我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅当此 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.