Uses of Class
gudusoft.gsqlparser.TSourceTokenList
Packages that use TSourceTokenList
Package
Description
Provides the class
TGSqlParser necessary to create a SQL Parser and the classes a SQL Parser uses
internally to handle different SQL dialects.Provides the classes represents various SQL query parse tree node.
Provides the classes represent various SQL statements.
-
Uses of TSourceTokenList in gudusoft.gsqlparser
Fields in gudusoft.gsqlparser declared as TSourceTokenListModifier and TypeFieldDescriptionTSourceToken.containerContainer for this token which is a list of source token, this is the reference toTGSqlParser.sourcetokenlistTCustomParser.sourcetokenlistTCustomSqlStatement.sourcetokenlistSource tokens included in this statement.TGSqlParser.sourcetokenlistTokens generated by lexer from the input SQL script.TLexerBigquery.sourcetokensTLexerCouchbase.sourcetokensTLexerDax.sourcetokensTLexerHana.sourcetokensTLexerHive.sourcetokensTLexerImpala.sourcetokensTLexerInformix.sourcetokensTLexerMdx.sourcetokensTLexerMssql.sourcetokensTLexerMysql.sourcetokensTLexerOdbc.sourcetokensTLexerOpenedge.sourcetokensTLexerSoql.sourcetokensTLexerSparksql.sourcetokensTLexerSybase.sourcetokensTLexerTeradata.sourcetokensMethods in gudusoft.gsqlparser that return TSourceTokenListModifier and TypeMethodDescriptionTGSqlParser.getSourcetokenlist()A sequence of source tokens created by the lexer after tokenize the input SQLTCustomSqlStatement.getTokenList()TSourceToken.getTokensAfter()Used in sql formatter package only.TSourceToken.getTokensBefore()Used in sql formatter package onlyTSafeParserPool.safeTokenizeSQL(EDbVendor vendor, String sqlText) Safe tokenization method.Methods in gudusoft.gsqlparser with parameters of type TSourceTokenListModifier and TypeMethodDescriptionbooleanITokenListHandle.processTokenList(TSourceTokenList tokenList) static voidTBaseType.resetTokenChain(TSourceTokenList pSourceTokenList, int startPos) Constructors in gudusoft.gsqlparser with parameters of type TSourceTokenListModifierConstructorDescriptionTParserAccessSql(TSourceTokenList sourcetokens) TParserAnsi(TSourceTokenList sourcetokens) TParserAthena(TSourceTokenList sourcetokens) TParserBigquery(TSourceTokenList sourcetokens) TParserClickhouse(TSourceTokenList sourcetokens) TParserCouchbase(TSourceTokenList sourcetokens) TParserDatabricks(TSourceTokenList sourcetokens) TParserDax(TSourceTokenList sourcetokens) TParserDb2Sql(TSourceTokenList sourcetokens) TParserGaussDB(TSourceTokenList sourcetokens) TParserGreenplum(TSourceTokenList sourcetokens) TParserHana(TSourceTokenList sourcetokens) TParserHive(TSourceTokenList sourcetokens) TParserImpala(TSourceTokenList sourcetokens) TParserInformix(TSourceTokenList sourcetokens) TParserMdx(TSourceTokenList sourcetokens) TParserMssqlSql(TSourceTokenList sourcetokens) TParserMysqlSql(TSourceTokenList sourcetokens) TParserNetezza(TSourceTokenList sourcetokens) TParserOdbc(TSourceTokenList sourcetokens) TParserOpenedge(TSourceTokenList sourcetokens) TParserOraclePLSql(TSourceTokenList sourcetokens) TParserOracleSql(TSourceTokenList sourcetokens) TParserPostgresql(TSourceTokenList sourcetokens) TParserPresto(TSourceTokenList sourcetokens) TParserRedshift(TSourceTokenList sourcetokens) TParserSnowflake(TSourceTokenList sourcetokens) TParserSoql(TSourceTokenList sourcetokens) TParserSparksql(TSourceTokenList sourcetokens) TParserSybase(TSourceTokenList sourcetokens) TParserTeradata(TSourceTokenList sourcetokens) TParserVertica(TSourceTokenList sourcetokens) -
Uses of TSourceTokenList in gudusoft.gsqlparser.nodes
Methods in gudusoft.gsqlparser.nodes that return TSourceTokenListModifier and TypeMethodDescriptionTCreateProcedureSqlNode.getFunctionBodyTokenList()TConstant.getStringLiteralSequence()String list constant in Hive.Methods in gudusoft.gsqlparser.nodes with parameters of type TSourceTokenListModifier and TypeMethodDescriptionintTParseTreeNode.addAllMyTokensToTokenList(TSourceTokenList targetList, int index) Deprecated.since v1.8.8.0, use scriptWriter technology to modify the node Inserts tokens(from start token to end token ) of this parse tree node at the specified position in this list.voidTParseTreeNode.setEndToken(TSourceTokenList endTokenList) voidTParseTreeNode.setStartToken(TSourceTokenList startTokenList) voidTConstant.setStringLiteralSequence(TSourceTokenList stringLiteralSequence) -
Uses of TSourceTokenList in gudusoft.gsqlparser.parser
Fields in gudusoft.gsqlparser.parser declared as TSourceTokenListModifier and TypeFieldDescriptionprotected TSourceTokenListAbstractSqlParser.sourcetokenlistToken list container - created once in constructor, cleared before each parse.Methods in gudusoft.gsqlparser.parser that return TSourceTokenListModifier and TypeMethodDescriptionSqlParseResult.getSourceTokenList()Get the list of source tokens.protected TSourceTokenListAbstractSqlParser.performTokenization(ParserContext context, TCustomLexer lexer) Perform tokenization using vendor-specific lexer.Methods in gudusoft.gsqlparser.parser with parameters of type TSourceTokenListModifier and TypeMethodDescriptionprotected voidAbstractSqlParser.doAfterTokenize(TSourceTokenList tokens) Post-tokenization normalization.final TStatementListAbstractSqlParser.doExtractRawStatements(ParserContext context, TSourceTokenList tokens) Extract raw statements without full parsing (public API).default TStatementListSqlParser.doExtractRawStatements(ParserContext context, TSourceTokenList tokens) Deprecated.As of 3.2.0.0, replaced bySqlParser.getrawsqlstatements(ParserContext)which returns a richerSqlParseResultobject containing statements, tokens, errors, timing information, and more.protected SqlParseResultAbstractSqlParser.extractRawStatements(ParserContext context, TSourceTokenList tokens, TCustomLexer lexer, long tokenizationTimeMs) Extract raw statements without full parsing.protected abstract TCustomParserAbstractSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Get the main parser for this vendor.protected TCustomParserAnsiSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the ANSI SQL parser instance with updated token list.protected TCustomParserAthenaSqlParser.getParser(ParserContext context, TSourceTokenList tokens) protected TCustomParserBigQuerySqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the BigQuery SQL parser instance with updated token list.protected TCustomParserCouchbaseSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the Couchbase SQL parser instance with updated token list.protected TCustomParserDatabricksSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the Databricks SQL parser instance with updated token list.protected TCustomParserDaxSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the DAX SQL parser instance with updated token list.protected TCustomParserDb2SqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the DB2 SQL parser instance with updated token list.protected TCustomParserGaussDbSqlParser.getParser(ParserContext context, TSourceTokenList tokens) protected TCustomParserGreenplumSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the Greenplum SQL parser instance with updated token list.protected TCustomParserHanaSqlParser.getParser(ParserContext context, TSourceTokenList tokens) protected TCustomParserHiveSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the Hive SQL parser instance with updated token list.protected TCustomParserImpalaSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the Impala SQL parser instance with updated token list.protected TCustomParserInformixSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the Informix SQL parser instance with updated token list.protected TCustomParserMdxSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the MDX parser instance with updated token list.protected TCustomParserMssqlSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the SQL Server SQL parser instance with updated token list.protected TCustomParserMySqlSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the MySQL SQL parser instance with updated token list.protected TCustomParserNetezzaSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the Netezza SQL parser instance with updated token list.protected TCustomParserOdbcSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the ODBC SQL parser instance with updated token list.protected TCustomParserOpenEdgeSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the OpenEdge SQL parser instance with updated token list.protected TCustomParserOracleSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the Oracle SQL parser instance with updated token list.protected TCustomParserPostgreSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the PostgreSQL SQL parser instance with updated token list.protected TCustomParserPrestoSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the Presto SQL parser instance with updated token list.protected TCustomParserRedshiftSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the Redshift SQL parser instance with updated token list.protected TCustomParserSnowflakeSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the Snowflake SQL parser instance with updated token list.protected TCustomParserSoqlSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the SOQL parser instance with updated token list.protected TCustomParserSparkSqlParser.getParser(ParserContext context, TSourceTokenList tokens) protected TCustomParserSparksqlSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the SparkSQL parser instance with updated token list.protected TCustomParserSybaseSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the Sybase parser instance with updated token list.protected TCustomParserTeradataSqlParser.getParser(ParserContext context, TSourceTokenList tokens) protected TCustomParserVerticaSqlParser.getParser(ParserContext context, TSourceTokenList tokens) Return the Vertica SQL parser instance with updated token list.protected TCustomParserAbstractSqlParser.getSecondaryParser(ParserContext context, TSourceTokenList tokens) Get secondary parser (e.g., PL/SQL for Oracle).protected TCustomParserAthenaSqlParser.getSecondaryParser(ParserContext context, TSourceTokenList tokens) protected TCustomParserBigQuerySqlParser.getSecondaryParser(ParserContext context, TSourceTokenList tokens) BigQuery does not use a secondary parser (unlike Oracle with PL/SQL).protected TCustomParserDatabricksSqlParser.getSecondaryParser(ParserContext context, TSourceTokenList tokens) Databricks uses a single parser, no secondary parser needed.protected TCustomParserDaxSqlParser.getSecondaryParser(ParserContext context, TSourceTokenList tokens) DAX does not use a secondary parser.protected TCustomParserGaussDbSqlParser.getSecondaryParser(ParserContext context, TSourceTokenList tokens) protected TCustomParserGreenplumSqlParser.getSecondaryParser(ParserContext context, TSourceTokenList tokens) Greenplum doesn't use secondary parser (unlike Oracle with PL/SQL parser).protected TCustomParserHanaSqlParser.getSecondaryParser(ParserContext context, TSourceTokenList tokens) protected TCustomParserHiveSqlParser.getSecondaryParser(ParserContext context, TSourceTokenList tokens) Hive does not use a secondary parser (unlike Oracle with PL/SQL).protected TCustomParserInformixSqlParser.getSecondaryParser(ParserContext context, TSourceTokenList tokens) No secondary parser for Informix (only Oracle has dual parsers).protected TCustomParserMdxSqlParser.getSecondaryParser(ParserContext context, TSourceTokenList tokens) MDX doesn't have a secondary parser.protected TCustomParserNetezzaSqlParser.getSecondaryParser(ParserContext context, TSourceTokenList tokens) Return null for secondary parser (Netezza only uses one parser).protected TCustomParserOracleSqlParser.getSecondaryParser(ParserContext context, TSourceTokenList tokens) Return the Oracle PL/SQL parser instance with updated token list.protected TCustomParserPrestoSqlParser.getSecondaryParser(ParserContext context, TSourceTokenList tokens) Presto does not have a secondary parser (only Oracle has PL/SQL parser).protected TCustomParserRedshiftSqlParser.getSecondaryParser(ParserContext context, TSourceTokenList tokens) Redshift doesn't have a secondary parser.protected TCustomParserSnowflakeSqlParser.getSecondaryParser(ParserContext context, TSourceTokenList tokens) Snowflake does not use a secondary parser (unlike Oracle with PL/SQL).protected TCustomParserSparkSqlParser.getSecondaryParser(ParserContext context, TSourceTokenList tokens) protected TCustomParserTeradataSqlParser.getSecondaryParser(ParserContext context, TSourceTokenList tokens) protected TCustomParserVerticaSqlParser.getSecondaryParser(ParserContext context, TSourceTokenList tokens) Vertica does not use a secondary parser (unlike Oracle with PL/SQL parser).protected abstract TStatementListAbstractSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Perform actual parsing with syntax checking.protected TStatementListAnsiSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Perform full parsing on raw ANSI SQL statements.protected TStatementListAthenaSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) protected TStatementListBigQuerySqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Parse all SQL statements after tokenization and raw extraction.protected TStatementListCouchbaseSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Perform full parsing of statements with syntax checking.protected TStatementListDatabricksSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Parse all raw statements to build AST.protected TStatementListDaxSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Parse all raw DAX statements.protected TStatementListDb2SqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Perform full parsing on raw DB2 SQL statements.protected TStatementListGaussDbSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) protected TStatementListGreenplumSqlParser.performParsing(ParserContext context, TCustomParser mainParser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Parse all statements in the statement list.protected TStatementListHanaSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) protected TStatementListHiveSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Parse all raw SQL statements.protected TStatementListImpalaSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Perform full parsing of statements with syntax checking.protected TStatementListInformixSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Parse all raw statements.protected TStatementListMdxSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Perform full parsing of statements with syntax checking.protected TStatementListMssqlSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Perform full parsing of statements with syntax checking.protected TStatementListMySqlSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Perform full parsing of statements with syntax checking.protected TStatementListNetezzaSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Perform full parsing of statements with syntax checking.protected TStatementListOdbcSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Perform full parsing of statements with syntax checking.protected TStatementListOpenEdgeSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Perform full parsing of statements with syntax checking.protected TStatementListOracleSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Perform full parsing of statements with syntax checking.protected TStatementListPostgreSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Perform full parsing of statements with syntax checking.protected TStatementListPrestoSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Perform full parsing of statements with syntax checking.protected TStatementListRedshiftSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Perform full parsing of statements with syntax checking.protected TStatementListSnowflakeSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Perform full parsing of statements with syntax checking.protected TStatementListSoqlSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Perform full parsing of statements with syntax checking.protected TStatementListSparkSqlParser.performParsing(ParserContext context, TCustomParser mainParser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) protected TStatementListSparksqlSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Perform full parsing of statements with syntax checking.protected TStatementListSybaseSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Perform full parsing of statements with syntax checking.protected TStatementListTeradataSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) protected TStatementListVerticaSqlParser.performParsing(ParserContext context, TCustomParser parser, TCustomParser secondaryParser, TSourceTokenList tokens, TStatementList rawStatements) Perform full parsing of statements with syntax checking.protected voidAbstractSqlParser.processTokensBeforeParse(ParserContext context, TSourceTokenList tokens) Process tokens before parsing (vendor-specific adjustments).protected voidAbstractSqlParser.processTokensInTokenTable(ParserContext context, TCustomLexer lexer, TSourceTokenList tokens) Process tokens using token table (vendor-specific token code adjustments).SqlParseResult.Builder.sourceTokenList(TSourceTokenList sourceTokenList) Set source token list. -
Uses of TSourceTokenList in gudusoft.gsqlparser.pp.print
Methods in gudusoft.gsqlparser.pp.print with parameters of type TSourceTokenListModifier and TypeMethodDescriptionvoidIPrinter.print(TSourceTokenList t) print the source token listvoidTextPrinter.print(TSourceTokenList tl) -
Uses of TSourceTokenList in gudusoft.gsqlparser.pp.utils
Methods in gudusoft.gsqlparser.pp.utils with parameters of type TSourceTokenListModifier and TypeMethodDescriptionstatic voidSourceTokenOperator.combineWhitespace(TSourceTokenList list, int startPos, int endPos) combine all the white spaces into a single white spacestatic intSourceTokenOperator.curColumnNumberVT(TSourceTokenList list, int pos) calcaulate the text length from a given position to the line start.static intSourceTokenOperator.curIndentLenVT(TSourceTokenList list, int pos) calculate the current indent length VT is the abbr for "virtual token" (which contains before tokens, after tokens and replace token)static TSourceTokenSourceTokenSearcher.firstNotWhitespaceAndReturnToken(TSourceTokenList list, int startPos, int endPos) get first token which is not whitespace and return tokenstatic TSourceTokenSourceTokenSearcher.firstSelectedToken(TSourceTokenList list, int startPos, int endPos, String text) static TSourceTokenSourceTokenSearcher.firstSelectNotWhitespaceAndReturnToken(TSourceTokenList list, int startPos, String text) forward search the token which is the first not whitespace or return token, and its value is a fixed textstatic intSourceTokenSearcher.indexOf(TSourceTokenList list, int startPos, int endPos, ETokenType type) search the source token in the source token list from the topstatic intSourceTokenSearcher.indexOf(TSourceTokenList list, int startPos, int endPos, String text) search the source token in the source token list from the topstatic intSourceTokenSearcher.indexOf(TSourceTokenList list, int startPos, String text) search the source token in the source token list from the topstatic intSourceTokenSearcher.lastIndexOf(TSourceTokenList list, int startPos, int endPos, String text) search the source token in the source token list from the endstatic intSourceTokenSearcher.lastIndexOf(TSourceTokenList list, int endPos, String text) search the source token in the source token list from the endstatic TSourceTokenSourceTokenSearcher.lastNotWhitespaceAndReturnToken(TSourceTokenList list, int endPos) get last token which is not whitespace and return tokenstatic TSourceTokenSourceTokenSearcher.lastNotWhitespaceAndReturnToken(TSourceTokenList list, int startPos, int endPos) get last token which is not whitespace and return tokenstatic TSourceTokenSourceTokenSearcher.lastSelectedNotWhitespaceAndReturnToken(TSourceTokenList list, int endPos, String text) backward search the token which is the first not whitespace or return token, and its value is a fixed textstatic TSourceTokenSourceTokenSearcher.lastSelectedToken(TSourceTokenList list, int startPos, int endPos, String text) static voidSourceTokenOperator.removeWhitespaceAndReturn(GFmtOpt opt, TSourceTokenList list, int start, int end) remove the white space and the return tokenstatic intSourceTokenOperator.removeWhitespaceAndReturnFromEnd(GFmtOpt opt, TSourceTokenList list, int end) remove the white space and the return token from the endstatic intSourceTokenOperator.removeWhitespaceAndReturnFromStart(GFmtOpt opt, TSourceTokenList list, int startPos) remove the white space and the return token from the endstatic intSourceTokenOperator.removeWhitespaceBackward(GFmtOpt opt, TSourceTokenList list, int end) static intSourceTokenOperator.textLengthVT(TSourceTokenList list, int start, int end) calculate the text length for all virtual token (which are call before tokens, after tokens and replace token) -
Uses of TSourceTokenList in gudusoft.gsqlparser.scriptWriter
Methods in gudusoft.gsqlparser.scriptWriter with parameters of type TSourceTokenListModifier and TypeMethodDescriptionbooleanTScriptWriter.verifyTokens(TSourceTokenList originalTokens, boolean partialChecking) -
Uses of TSourceTokenList in gudusoft.gsqlparser.stmt
Methods in gudusoft.gsqlparser.stmt that return TSourceTokenListModifier and TypeMethodDescriptionTCreateTriggerStmt.getDmlTpyes()Deprecated.As of v1.7.2.5, replaced byETriggerDmlType -
Uses of TSourceTokenList in gudusoft.gsqlparser.stmt.mssql
Methods in gudusoft.gsqlparser.stmt.mssql that return TSourceTokenListModifier and TypeMethodDescriptionTMssqlCreateTrigger.getDmlTpyes()Deprecated.As of v1.7.2.5, replaced byETriggerDmlType