讲述如何使用SQL CLR表值函数进行扩展
2007-05-17 09:36:00 来源:WEB开发网核心提示: CREATE function EmployeeNames()returns @employeeNames table (id int, name nvarchar(20), )as beginINSERT @employeeNames values(1, 'Ryan');
CREATE function EmployeeNames()
returns @employeeNames table (id int, name nvarchar(20), )
as begin
INSERT @employeeNames values(1, 'Ryan');
INSERT @employeeNames values(2, 'John');
INSERT @employeeNames values(3, 'Bob');
return
end
然后,就可以从 select 语句中引用该函数,就象它是表一样:SELECT name from EmployeeNames() where id = 1。
查询返回以下值:
name
--------------------
Ryan
尽管这很有用,但还是受到 Transact-SQL 语言的限制,因为该语言主要应用于关系数据。如果您尝试离开其适用范围,那么 Transact-SQL 会变得多少有点不太灵活。在 SQL Server 2005 中,您现在可以使用自己喜欢的 .NET Framework 语言来创建表值函数,这就可能出现一些令人惊叹的事情。现在,程序员能够将他们所需的任何信息提取到关系数据库表中。
例如,以下代码是在 Microsoft Visual C# 中实现的 SQL Server 2005 表值函数,它返回根据系统事件日志创建的表:
using System;
using System.Data.Sql;
using Microsoft.SqlServer.Server;
using System.Collections;
using System.Data.SqlTypes;
using System.Diagnostics;
public class TabularEventLog
{
[SqlFunction(TableDefinition="logTime datetime,Message" +
"nvarchar(4000),Category nvarchar(4000),InstanceId bigint",
Name="ReadEventLog", FillRowMethodName = "FillRow")]
public static IEnumerable InitMethod(String logname)
{
return new EventLog(logname, Environment.MachineName).Entries;
}
public static void FillRow(Object obj, out SqlDateTime timeWritten,
out SqlChars message, out SqlChars category,
out long instanceId)
{
EventLogEntry eventLogEntry = (EventLogEntry)obj;
timeWritten = new SqlDateTime(eventLogEntry.TimeWritten);
message = new SqlChars(eventLogEntry.Message);
category = new SqlChars(eventLogEntry.Category);
instanceId = eventLogEntry.InstanceId;
}
}
更多精彩
赞助商链接