我正在尝试改进链接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 ) );
}
}
答案 0 :(得分:2)
你的静态正则表达式的基于UDF的实例可能甚至没有重复使用,你最好调用静态版本的
System.Text.RegularExpressions.RegEx.IsMatch(string input, string pattern, RegexOptions options);
直接
请注意,在调试模式下,它们的工作方式与它们在生产中的工作方式不同,并且SQL会在需要时释放内存。
另外,请尝试使用RegexOptions.Compiled
和CultureInvariant
。