TSqlParser.ParseBooleanExpression 方法

定义

重载

名称 说明
ParseBooleanExpression(TextReader, IList<ParseError>)

分析输入字符串以获取布尔表达式。 如果出现任何错误,这将返回 null。

ParseBooleanExpression(TextReader, IList<ParseError>, Int32, Int32, Int32)

分析输入字符串以获取布尔表达式。 如果出现任何错误,这将返回 null。

ParseBooleanExpression(TextReader, IList<ParseError>)

分析输入字符串以获取布尔表达式。 如果出现任何错误,这将返回 null。

public Microsoft.SqlServer.TransactSql.ScriptDom.BooleanExpression ParseBooleanExpression(System.IO.TextReader input, out System.Collections.Generic.IList<Microsoft.SqlServer.TransactSql.ScriptDom.ParseError> errors);
member this.ParseBooleanExpression : System.IO.TextReader * IList -> Microsoft.SqlServer.TransactSql.ScriptDom.BooleanExpression
Public Function ParseBooleanExpression (input As TextReader, ByRef errors As IList(Of ParseError)) As BooleanExpression

参数

input
TextReader

输入。

errors
IList<ParseError>

错误的集合。

返回

适用于

ParseBooleanExpression(TextReader, IList<ParseError>, Int32, Int32, Int32)

分析输入字符串以获取布尔表达式。 如果出现任何错误,这将返回 null。

public abstract Microsoft.SqlServer.TransactSql.ScriptDom.BooleanExpression ParseBooleanExpression(System.IO.TextReader input, out System.Collections.Generic.IList<Microsoft.SqlServer.TransactSql.ScriptDom.ParseError> errors, int startOffset, int startLine, int startColumn);
abstract member ParseBooleanExpression : System.IO.TextReader * IList * int * int * int -> Microsoft.SqlServer.TransactSql.ScriptDom.BooleanExpression
Public MustOverride Function ParseBooleanExpression (input As TextReader, ByRef errors As IList(Of ParseError), startOffset As Integer, startLine As Integer, startColumn As Integer) As BooleanExpression

参数

input
TextReader
errors
IList<ParseError>
startOffset
Int32
startLine
Int32
startColumn
Int32

返回

适用于