TSqlParserToken Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
TSqlParserToken() |
Initializes a new instance of the TSqlParserToken class. |
TSqlParserToken(TSqlTokenType, String) |
Initializes a new instance of the TSqlParserToken class. |
TSqlParserToken(TSqlTokenType, Int32, String, Int32, Int32) |
Initializes a new instance of the TSqlParserToken class. |
TSqlParserToken()
Initializes a new instance of the TSqlParserToken class.
public TSqlParserToken ();
Public Sub New ()
Applies to
TSqlParserToken(TSqlTokenType, String)
Initializes a new instance of the TSqlParserToken class.
public TSqlParserToken (Microsoft.SqlServer.TransactSql.ScriptDom.TSqlTokenType type, string text);
new Microsoft.SqlServer.TransactSql.ScriptDom.TSqlParserToken : Microsoft.SqlServer.TransactSql.ScriptDom.TSqlTokenType * string -> Microsoft.SqlServer.TransactSql.ScriptDom.TSqlParserToken
Public Sub New (type As TSqlTokenType, text As String)
Parameters
- type
- TSqlTokenType
The Token type.
- text
- String
The text.
Applies to
TSqlParserToken(TSqlTokenType, Int32, String, Int32, Int32)
Initializes a new instance of the TSqlParserToken class.
public TSqlParserToken (Microsoft.SqlServer.TransactSql.ScriptDom.TSqlTokenType type, int offset, string text, int line, int column);
new Microsoft.SqlServer.TransactSql.ScriptDom.TSqlParserToken : Microsoft.SqlServer.TransactSql.ScriptDom.TSqlTokenType * int * string * int * int -> Microsoft.SqlServer.TransactSql.ScriptDom.TSqlParserToken
Public Sub New (type As TSqlTokenType, offset As Integer, text As String, line As Integer, column As Integer)
Parameters
- type
- TSqlTokenType
The Token type.
- offset
- Int32
The offset position in the input.
- text
- String
The text.
- line
- Int32
The line number in the input.
- column
- Int32
The column number in the input.