我正在尝试改进链接http://msdn.microsoft.com/en-us/magazine/cc163473.aspx中的 Clr 功能。
public static partial class UserDefinedFunctions
{
public static readonly RegexOptions Options =
RegexOptions.IgnorePatternWhitespace |
RegexOptions.Singleline;
[SqlFunction]
public static SqlBoolean RegexMatch(
SqlChars input, SqlString pattern)
{
Regex regex = new Regex( pattern.Value, Options );
return regex.IsMatch( new string( input.Value ) );
}
}
当执行select * from Table1 where dbo.RegexMatch(col1, 'pattern') = 1
时,Clr 函数为表中的每一行创建一个新的 Regex 对象。
是否可以为每个 Sql 语句只创建一个 Regex 对象?对于每一行,只需调用regex.Ismatch(...)
. 以下代码有效吗?
public static partial class UserDefinedFunctions
{
public static readonly RegexOptions Options =
RegexOptions.IgnorePatternWhitespace |
RegexOptions.Singleline;
static Regex regex = null;
[SqlFunction]
public static SqlBoolean RegexMatch(
SqlChars input, SqlString pattern)
{
if (regex == null)
regex = new Regex( pattern.Value, Options );
return regex.IsMatch( new string( input.Value ) );
}
}