WEB开发网
开发学院数据库MSSQL Server 在SQL Server 2005中使用正则表达式 阅读

在SQL Server 2005中使用正则表达式

 2009-03-17 10:24:19 来源:WEB开发网   
核心提示:CLR用户定义函数只是在.NET 程序集中定义的静态方法,CREATE FUNCTION 语句已扩展为支持创建 CLR 用户定义函数,在SQL Server 2005中使用正则表达式,1、创建数据库项目图片看不清楚?请点击这里查看原图(大图),2、添加用户定义函数以下是演示代码:CodeusingSystem;usin

CLR用户定义函数只是在.NET 程序集中定义的静态方法。CREATE FUNCTION 语句已扩展为支持创建 CLR 用户定义函数。

1、创建数据库项目

在SQL Server 2005中使用正则表达式

图片看不清楚?请点击这里查看原图(大图)。

2、添加用户定义函数

在SQL Server 2005中使用正则表达式

以下是演示代码:

Code
using System;
using System.Data;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using Microsoft.SqlServer.Server;
using System.Text.RegularExpressions;

// 示意代码
public partial class UserDefinedFunctions
{
public static readonly RegexOptions Options =

RegexOptions.IgnorePatternWhitespace | RegexOptions.Singleline;

[Microsoft.SqlServer.Server.SqlFunction]
public static string RegexValue(SqlChars input, SqlString pattern)
{
Regex regex = new Regex(pattern.Value, Options);

return  regex.Match(new string(input.Value)).Value;
}
}

3、将自定义函数关联到数据库

在SQL Server 2005中使用正则表达式

4、Sql 查询分析器

在SQL Server 2005中使用正则表达式

为了确保SQL可以执行托管代码,执行下面的语句:

EXEC sp_configure 'clr enabled', 1

sql 如下:
select dbo.RegexValue('2008-09-02',N'd{4}') from Table

============================================= 

Tags:SQL Server 使用

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接