本文整理汇总了C#中ISqlDialect.QuoteIdentifier方法的典型用法代码示例。如果您正苦于以下问题:C# ISqlDialect.QuoteIdentifier方法的具体用法?C# ISqlDialect.QuoteIdentifier怎么用?C# ISqlDialect.QuoteIdentifier使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ISqlDialect
的用法示例。
在下文中一共展示了ISqlDialect.QuoteIdentifier方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: QuoteIdentifier
private static string QuoteIdentifier(ISqlDialect dialect, SqlFormatProperties props, string ident)
{
if (ident != null && ident.StartsWith(NameWithSchema.NoQuotePrefix))
{
return ident.Substring(NameWithSchema.NoQuotePrefix.Length);
}
switch (props.IdentifierQuoteMode)
{
case SqlIdentifierQuoteMode.Plain:
if (MustBeQuoted(ident, dialect)) return dialect.QuoteIdentifier(GetCasedString(ident, props.IdentifierCase));
return GetCasedString(ident, props.IdentifierCase);
//case SqlIdentifierQuoteMode.Quoted:
default :
return dialect.QuoteIdentifier(GetCasedString(ident, props.IdentifierCase));
}
//throw new InternalError("DBSH-00049 Unexpected idquote mode");
}
示例2: ReplaceBrackets
public static string ReplaceBrackets(string expression, ISqlDialect dialect)
{
if (expression == null)
return null;
bool inQuote = false;
var sb = new StringBuilder(expression.Length);
for (var i = 0; i < expression.Length; i++)
{
var c = expression[i];
if (inQuote)
{
if (c == '\'')
inQuote = false;
sb.Append(c);
}
else if (c == '\'')
{
inQuote = true;
sb.Append(c);
}
else if (c == '[')
{
if (i > 0 &&
(Char.IsLetterOrDigit(expression[i - 1]) ||
expression[i - 1] == '_'))
{
// might be an array indexer expression like a[5]
sb.Append(c);
continue;
}
var end = expression.IndexOf(']', i + 1);
if (end < 0)
{
sb.Append(c);
continue;
}
if (end < expression.Length - 1 &&
(expression[end + 1] == '_' ||
Char.IsLetterOrDigit(expression[end + 1])))
{
sb.Append(c);
continue;
}
long l;
var sub = expression.SafeSubstring(i + 1, end - i - 1);
if (sub.Length == 0 ||
sub.IndexOf('\'') >= 0 ||
sub.IndexOf('[') >= 0 ||
Int64.TryParse(sub, out l))
{
sb.Append(c);
continue;
}
sb.Append(dialect.QuoteIdentifier(sub));
i = end;
continue;
}
else
{
sb.Append(c);
}
}
return sb.ToString();
}