【发布时间】:2011-06-02 15:21:23
【问题描述】:
假设我在 SQL Server 2008 中有一个 UDF:
Create function dbo.ReadXml (@xmlMatrix xml) returns table
as
return
( select
--SOME C++ CODE
)
go
- 是否可以在 UDF 中添加 c++ 代码或调用 c++ 函数?
【问题讨论】:
标签: c++ sql-server-2008 user-defined-functions