Uses of Interface
com.alibaba.druid.sql.ast.SQLStatement
-
-
Uses of SQLStatement in com.alibaba.druid.sql
Methods in com.alibaba.druid.sql that return SQLStatement Modifier and Type Method Description static SQLStatementSQLUtils. convertTimeZone(SQLStatement stmt, TimeZone from, TimeZone to)static SQLStatementSQLUtils. parseSingleMysqlStatement(String sql)static SQLStatementSQLUtils. parseSingleStatement(String sql, DbType dbType, boolean keepComments)static SQLStatementSQLUtils. parseSingleStatement(String sql, DbType dbType, SQLParserFeature... features)static SQLStatementSQLUtils. parseSingleStatement(String sql, String dbType, SQLParserFeature... features)Methods in com.alibaba.druid.sql that return types with arguments of type SQLStatement Modifier and Type Method Description static List<SQLStatement>SQLUtils. parseStatements(String sql, DbType dbType)static List<SQLStatement>SQLUtils. parseStatements(String sql, DbType dbType, boolean keepComments)static List<SQLStatement>SQLUtils. parseStatements(String sql, DbType dbType, SQLParserFeature... features)static List<SQLStatement>SQLUtils. parseStatements(String sql, String dbType)static List<SQLStatement>SQLUtils. parseStatements(String sql, String dbType, SQLParserFeature... features)static List<SQLStatement>SQLUtils. toStatementList(String sql, DbType dbType)Methods in com.alibaba.druid.sql with parameters of type SQLStatement Modifier and Type Method Description static voidSQLUtils. addCondition(SQLStatement stmt, SQLBinaryOperator op, SQLExpr condition, boolean left)static voidSQLUtils. addSelectItem(SQLStatement stmt, SQLExpr expr, String alias, boolean first)static SQLStatementSQLUtils. convertTimeZone(SQLStatement stmt, TimeZone from, TimeZone to)static SQLLimitSQLUtils. getLimit(SQLStatement statement, DbType dbType)static booleanSQLUtils. replaceInParent(SQLStatement cmp, SQLStatement dest)Method parameters in com.alibaba.druid.sql with type arguments of type SQLStatement Modifier and Type Method Description static SQLASTOutputVisitorSQLUtils. createFormatOutputVisitor(StringBuilder out, List<SQLStatement> statementList, DbType dbType)static SchemaStatVisitorSQLUtils. createSchemaStatVisitor(List<SQLStatement> statementList, DbType dbType)Deprecated.static StringSQLUtils. toSQLString(List<SQLStatement> statementList, DbType dbType)static StringSQLUtils. toSQLString(List<SQLStatement> statementList, DbType dbType, SQLUtils.FormatOption option)static StringSQLUtils. toSQLString(List<SQLStatement> statementList, DbType dbType, SQLASTOutputVisitor visitor)static StringSQLUtils. toSQLString(List<SQLStatement> statementList, DbType dbType, List<Object> parameters)static StringSQLUtils. toSQLString(List<SQLStatement> statementList, DbType dbType, List<Object> parameters, SQLUtils.FormatOption option)static StringSQLUtils. toSQLString(List<SQLStatement> statementList, DbType dbType, List<Object> parameters, SQLUtils.FormatOption option, Map<String,String> tableMapping)static StringSQLUtils. toSQLString(List<SQLStatement> statementList, DbType dbType, List<Object> parameters, Map<String,String> tableMapping, SQLASTOutputVisitor visitor) -
Uses of SQLStatement in com.alibaba.druid.sql.ast
Classes in com.alibaba.druid.sql.ast that implement SQLStatement Modifier and Type Class Description classSQLComputeIncrementalStatsStatementclassSQLResetStatementclassSQLStatementImplMethods in com.alibaba.druid.sql.ast that return SQLStatement Modifier and Type Method Description SQLStatementSQLStatement. clone()SQLStatementSQLStatementImpl. clone() -
Uses of SQLStatement in com.alibaba.druid.sql.ast.expr
Classes in com.alibaba.druid.sql.ast.expr that implement SQLStatement Modifier and Type Class Description classSQLCaseStatementMethods in com.alibaba.druid.sql.ast.expr that return SQLStatement Modifier and Type Method Description SQLStatementSQLCaseStatement.Item. getStatement()Methods in com.alibaba.druid.sql.ast.expr that return types with arguments of type SQLStatement Modifier and Type Method Description List<SQLStatement>SQLCaseStatement. getElseStatements()Methods in com.alibaba.druid.sql.ast.expr with parameters of type SQLStatement Modifier and Type Method Description voidSQLCaseStatement.Item. setStatement(SQLStatement statement)Constructors in com.alibaba.druid.sql.ast.expr with parameters of type SQLStatement Constructor Description Item(SQLExpr conditionExpr, SQLStatement statement) -
Uses of SQLStatement in com.alibaba.druid.sql.ast.statement
Subinterfaces of SQLStatement in com.alibaba.druid.sql.ast.statement Modifier and Type Interface Description interfaceSQLAlterStatementinterfaceSQLCreateStatementinterfaceSQLDDLStatementinterfaceSQLDropStatementinterfaceSQLLockTableStatementinterfaceSQLShowStatementFields in com.alibaba.druid.sql.ast.statement declared as SQLStatement Modifier and Type Field Description protected SQLStatementSQLCreateFunctionStatement. blockSQLStatementSQLBlockStatement. exceptionprotected SQLStatementSQLWithSubqueryClause.Entry. returningStatementprotected SQLStatementSQLCostStatement. statementprotected SQLStatementSQLExplainStatement. statementFields in com.alibaba.druid.sql.ast.statement with type parameters of type SQLStatement Modifier and Type Field Description protected List<SQLStatement>SQLForStatement. statementsMethods in com.alibaba.druid.sql.ast.statement that return SQLStatement Modifier and Type Method Description SQLStatementSQLReplaceStatement. clone()SQLStatementSQLCreateFunctionStatement. getBlock()SQLStatementSQLCreateProcedureStatement. getBlock()SQLStatementSQLCreateTriggerStatement. getBody()SQLStatementSQLBlockStatement. getException()SQLStatementSQLSetStatement. getMaridbSetForStatement()SQLStatementSQLCreateOutlineStatement. getOn()SQLStatementSQLWithSubqueryClause.Entry. getReturningStatement()SQLStatementSQLCostStatement. getStatement()SQLStatementSQLExplainStatement. getStatement()SQLStatementSQLSubmitJobStatement. getStatment()SQLStatementSQLCreateOutlineStatement. getTo()Methods in com.alibaba.druid.sql.ast.statement that return types with arguments of type SQLStatement Modifier and Type Method Description List<SQLStatement>SQLBlockStatement. getStatementList()List<SQLStatement>SQLExceptionStatement.Item. getStatements()List<SQLStatement>SQLForStatement. getStatements()List<SQLStatement>SQLIfStatement.Else. getStatements()List<SQLStatement>SQLIfStatement.ElseIf. getStatements()List<SQLStatement>SQLIfStatement. getStatements()List<SQLStatement>SQLLoopStatement. getStatements()List<SQLStatement>SQLWhileStatement. getStatements()Methods in com.alibaba.druid.sql.ast.statement with parameters of type SQLStatement Modifier and Type Method Description voidSQLIfStatement. addStatement(SQLStatement statement)voidSQLLoopStatement. addStatement(SQLStatement stmt)booleanSQLBlockStatement. replace(SQLStatement cmp, SQLStatement target)voidSQLCreateFunctionStatement. setBlock(SQLStatement block)voidSQLCreateProcedureStatement. setBlock(SQLStatement block)voidSQLCreateTriggerStatement. setBody(SQLStatement body)voidSQLBlockStatement. setException(SQLStatement exception)voidSQLSetStatement. setMaridbSetForStatement(SQLStatement maridbSetForStatement)voidSQLCreateOutlineStatement. setOn(SQLStatement x)voidSQLWithSubqueryClause.Entry. setReturningStatement(SQLStatement returningStatement)voidSQLCostStatement. setStatement(SQLStatement statement)voidSQLExceptionStatement.Item. setStatement(SQLStatement statement)voidSQLExplainStatement. setStatement(SQLStatement statement)voidSQLSubmitJobStatement. setStatment(SQLStatement statment)voidSQLCreateOutlineStatement. setTo(SQLStatement x)Method parameters in com.alibaba.druid.sql.ast.statement with type arguments of type SQLStatement Modifier and Type Method Description voidSQLBlockStatement. setStatementList(List<SQLStatement> statementList)voidSQLIfStatement.Else. setStatements(List<SQLStatement> statements)voidSQLIfStatement.ElseIf. setStatements(List<SQLStatement> statements)voidSQLWhileStatement. setStatements(List<SQLStatement> statements)static voidSQLCreateTableStatement. sort(List<SQLStatement> stmtList) -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.athena.ast.stmt
Classes in com.alibaba.druid.sql.dialect.athena.ast.stmt that implement SQLStatement Modifier and Type Class Description classAthenaCreateTableStatement -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.bigquery.ast
Classes in com.alibaba.druid.sql.dialect.bigquery.ast that implement SQLStatement Modifier and Type Class Description classBigQueryAssertStatementclassBigQueryCreateModelStatementclassBigQueryCreateTableStatementclassBigQueryExecuteImmediateStatementMethods in com.alibaba.druid.sql.dialect.bigquery.ast that return SQLStatement Modifier and Type Method Description SQLStatementBigQueryCreateModelStatement. getCustomHoliday()SQLStatementBigQueryCreateModelStatement. getTrainingData()Methods in com.alibaba.druid.sql.dialect.bigquery.ast with parameters of type SQLStatement Modifier and Type Method Description voidBigQueryCreateModelStatement. setCustomHoliday(SQLStatement x)voidBigQueryCreateModelStatement. setTrainingData(SQLStatement x) -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.bigquery.parser
Methods in com.alibaba.druid.sql.dialect.bigquery.parser that return SQLStatement Modifier and Type Method Description protected SQLStatementBigQueryStatementParser. parseAssert()SQLStatementBigQueryStatementParser. parseBlock()protected SQLStatementBigQueryStatementParser. parseCreateModel()SQLStatementBigQueryStatementParser. parseDeclare()SQLStatementBigQueryStatementParser. parseExecute()SQLStatementBigQueryStatementParser. parseRaise()Method parameters in com.alibaba.druid.sql.dialect.bigquery.parser with type arguments of type SQLStatement Modifier and Type Method Description booleanBigQueryStatementParser. parseStatementListDialect(List<SQLStatement> statementList) -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.blink.ast
Classes in com.alibaba.druid.sql.dialect.blink.ast that implement SQLStatement Modifier and Type Class Description classBlinkCreateTableStatement -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.clickhouse.ast
Classes in com.alibaba.druid.sql.dialect.clickhouse.ast that implement SQLStatement Modifier and Type Class Description classCKAlterTableStatementclassCKAlterTableUpdateStatementclassCKCreateTableStatement -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.databricks.parser
Methods in com.alibaba.druid.sql.dialect.databricks.parser that return SQLStatement Modifier and Type Method Description SQLStatementDatabricksStatementParser. parseRefresh() -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.db2.ast
Subinterfaces of SQLStatement in com.alibaba.druid.sql.dialect.db2.ast Modifier and Type Interface Description interfaceDB2StatementClasses in com.alibaba.druid.sql.dialect.db2.ast that implement SQLStatement Modifier and Type Class Description classDB2StatementImpl -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.db2.ast.stmt
Classes in com.alibaba.druid.sql.dialect.db2.ast.stmt that implement SQLStatement Modifier and Type Class Description classDB2CreateSchemaStatementclassDB2CreateTableStatementclassDB2DropSchemaStatementclassDB2ValuesStatement -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.db2.parser
Methods in com.alibaba.druid.sql.dialect.db2.parser that return SQLStatement Modifier and Type Method Description SQLStatementDB2StatementParser. parseCreateSchema()SQLStatementDB2StatementParser. parseTruncate()Method parameters in com.alibaba.druid.sql.dialect.db2.parser with type arguments of type SQLStatement Modifier and Type Method Description booleanDB2StatementParser. parseStatementListDialect(List<SQLStatement> statementList) -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.gaussdb.ast.stmt
Classes in com.alibaba.druid.sql.dialect.gaussdb.ast.stmt that implement SQLStatement Modifier and Type Class Description classGaussDbCreateTableStatementclassGaussDbInsertStatement -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.h2.parser
Methods in com.alibaba.druid.sql.dialect.h2.parser that return SQLStatement Modifier and Type Method Description SQLStatementH2StatementParser. parseMerge() -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.hive.ast
Classes in com.alibaba.druid.sql.dialect.hive.ast that implement SQLStatement Modifier and Type Class Description classHiveAddJarStatementclassHiveInsertclassHiveInsertStatementclassHiveMultiInsertStatement -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.hive.parser
Methods in com.alibaba.druid.sql.dialect.hive.parser that return SQLStatement Modifier and Type Method Description protected SQLStatementHiveStatementParser. alterDatabase()protected SQLStatementHiveStatementParser. alterSchema()protected SQLStatementHiveStatementParser. parseAdd()SQLStatementHiveStatementParser. parseCreateSchema()protected SQLStatementHiveStatementParser. parseExport()protected SQLStatementHiveStatementParser. parseImport()SQLStatementHiveStatementParser. parseInsert()Method parameters in com.alibaba.druid.sql.dialect.hive.parser with type arguments of type SQLStatement Modifier and Type Method Description booleanHiveStatementParser. parseStatementListDialect(List<SQLStatement> statementList) -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.hive.stmt
Classes in com.alibaba.druid.sql.dialect.hive.stmt that implement SQLStatement Modifier and Type Class Description classHiveCreateFunctionStatementclassHiveCreateTableStatementclassHiveLoadDataStatementclassHiveMsckRepairStatement -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.impala.parser
Methods in com.alibaba.druid.sql.dialect.impala.parser that return SQLStatement Modifier and Type Method Description SQLStatementImpalaStatementParser. parseRefresh()SQLStatementImpalaStatementParser. parseUpsert() -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.impala.stmt
Classes in com.alibaba.druid.sql.dialect.impala.stmt that implement SQLStatement Modifier and Type Class Description classImpalaCreateTableStatementclassImpalaInsertStatement -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.mysql.ast.clause
Classes in com.alibaba.druid.sql.dialect.mysql.ast.clause that implement SQLStatement Modifier and Type Class Description classMySqlCaseStatementclassMySqlCursorDeclareStatementclassMySqlDeclareConditionStatementclassMySqlDeclareHandlerStatementclassMySqlDeclareStatementclassMySqlIterateStatementclassMySqlLeaveStatementclassMySqlRepeatStatementclassMySqlSelectIntoStatementMethods in com.alibaba.druid.sql.dialect.mysql.ast.clause that return SQLStatement Modifier and Type Method Description SQLStatementMySqlDeclareHandlerStatement. getSpStatement()Methods in com.alibaba.druid.sql.dialect.mysql.ast.clause that return types with arguments of type SQLStatement Modifier and Type Method Description List<SQLStatement>MySqlCaseStatement.MySqlWhenStatement. getStatements()List<SQLStatement>MySqlRepeatStatement. getStatements()Methods in com.alibaba.druid.sql.dialect.mysql.ast.clause with parameters of type SQLStatement Modifier and Type Method Description static MySqlStatementTypeMySqlStatementType. getType(SQLStatement stmt)voidMySqlDeclareHandlerStatement. setSpStatement(SQLStatement spStatement)Method parameters in com.alibaba.druid.sql.dialect.mysql.ast.clause with type arguments of type SQLStatement Modifier and Type Method Description voidMySqlCaseStatement.MySqlWhenStatement. setStatements(List<SQLStatement> statements)voidMySqlRepeatStatement. setStatements(List<SQLStatement> statements) -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.mysql.ast.statement
Subinterfaces of SQLStatement in com.alibaba.druid.sql.dialect.mysql.ast.statement Modifier and Type Interface Description interfaceMySqlShowStatementinterfaceMySqlStatementFields in com.alibaba.druid.sql.dialect.mysql.ast.statement declared as SQLStatement Modifier and Type Field Description protected SQLStatementMySqlCreateTableStatement. withSelectMethods in com.alibaba.druid.sql.dialect.mysql.ast.statement that return SQLStatement Modifier and Type Method Description SQLStatementMySqlAlterEventStatement. getEventBody()SQLStatementMySqlCreateEventStatement. getEventBody()SQLStatementMySqlCreateTableStatement. getWithSelect()Methods in com.alibaba.druid.sql.dialect.mysql.ast.statement that return types with arguments of type SQLStatement Modifier and Type Method Description List<SQLStatement>MySqlHintStatement. getHintStatements()Methods in com.alibaba.druid.sql.dialect.mysql.ast.statement with parameters of type SQLStatement Modifier and Type Method Description voidMySqlAlterEventStatement. setEventBody(SQLStatement eventBody)voidMySqlCreateEventStatement. setEventBody(SQLStatement eventBody)voidMySqlCreateTableStatement. setWithSelect(SQLStatement withSelect) -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.mysql.executor
Methods in com.alibaba.druid.sql.dialect.mysql.executor with parameters of type SQLStatement Modifier and Type Method Description static intMySqlProcedureExecutor. executeAssign(SQLStatement stmt)static intMySqlProcedureExecutor. executeCase(SQLStatement stmt)static intMySqlProcedureExecutor. executeClose(SQLStatement stmt)static intMySqlProcedureExecutor. executeFetch(SQLStatement stmt)static intMySqlProcedureExecutor. executeFunction(SQLStatement stmt)static intMySqlProcedureExecutor. executeIf(SQLStatement stmt)static intMySqlProcedureExecutor. executeLoop(SQLStatement stmt)static intMySqlProcedureExecutor. executeOpen(SQLStatement stmt)static intMySqlProcedureExecutor. executeSQL(SQLStatement stmt)static intMySqlProcedureExecutor. executeStatement(SQLStatement stmt)static intMySqlProcedureExecutor. executeWhile(SQLStatement stmt)Method parameters in com.alibaba.druid.sql.dialect.mysql.executor with type arguments of type SQLStatement Modifier and Type Method Description static intMySqlProcedureExecutor. executeStatements(List<SQLStatement> list) -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.mysql.parser
Methods in com.alibaba.druid.sql.dialect.mysql.parser that return SQLStatement Modifier and Type Method Description SQLStatementMySqlStatementParser. alterDatabase()protected SQLStatementMySqlStatementParser. alterEvent()protected SQLStatementMySqlStatementParser. alterFullText()protected SQLStatementMySqlStatementParser. alterLogFileGroup()protected SQLStatementMySqlStatementParser. alterOutline()protected SQLStatementMySqlStatementParser. alterProcedure()protected SQLStatementMySqlStatementParser. alterRest(Lexer.SavePoint mark)protected SQLStatementMySqlStatementParser. alterSchema()protected SQLStatementMySqlStatementParser. alterServer()protected SQLStatementMySqlStatementParser. alterSystem()protected SQLStatementMySqlStatementParser. alterTableGroup()protected SQLStatementMySqlStatementParser. alterTableSpace()protected SQLStatementMySqlStatementParser. alterView()protected SQLStatementMySqlStatementParser. createTableRest(Lexer.SavePoint mark)protected SQLStatementMySqlStatementParser. parseAlterFunction()SQLStatementMySqlStatementParser. parseBinlog()SQLStatementMySqlStatementParser. parseCommit()SQLStatementMySqlStatementParser. parseCopy()SQLStatementMySqlStatementParser. parseCreateDatabase()protected SQLStatementMySqlStatementParser. parseCreateEvent()SQLStatementMySqlStatementParser. parseCreateFullTextStatement()protected SQLStatementMySqlStatementParser. parseCreateLogFileGroup()SQLStatementMySqlStatementParser. parseCreateOutline()SQLStatementMySqlStatementParser. parseCreateSchema()SQLStatementMySqlStatementParser. parseCreateServer()SQLStatementMySqlStatementParser. parseCreateTableSpace()SQLStatementMySqlStatementParser. parseCreateUser()SQLStatementMySqlStatementParser. parseDeclare()parse declare statementSQLStatementMySqlStatementParser. parseExecute()protected SQLStatementMySqlStatementParser. parseExportDB()protected SQLStatementMySqlStatementParser. parseExportTable()SQLStatementMySqlStatementParser. parseFlashback()SQLStatementMySqlStatementParser. parseFlush()protected SQLStatementMySqlStatementParser. parseImportDB()protected SQLStatementMySqlStatementParser. parseImportTable()SQLStatementMySqlStatementParser. parseKill()protected SQLStatementMySqlStatementParser. parseLoad()protected SQLStatementMySqlStatementParser. parseMigrate()protected SQLStatementMySqlStatementParser. parseRaftLeaderTransfer()protected SQLStatementMySqlStatementParser. parseRaftMemeberChange()SQLStatementMySqlStatementParser. parseRename()SQLStatementMySqlStatementParser. parseRollback()SQLStatementMySqlStatementParser. parseSelect()SQLStatementMySqlStatementParser. parseSet()SQLStatementMySqlStatementParser. parseShow()SQLStatementMySqlStatementParser. parseSpStatement()zhujun [455910092@qq.com] parse spstatementprotected SQLStatementMySqlStatementParser. parseSubmitJob()SQLStatementMySqlStatementParser. parseSync()Method parameters in com.alibaba.druid.sql.dialect.mysql.parser with type arguments of type SQLStatement Modifier and Type Method Description booleanMySqlStatementParser. parseStatementListDialect(List<SQLStatement> statementList) -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.mysql.visitor.transform
Methods in com.alibaba.druid.sql.dialect.mysql.visitor.transform that return types with arguments of type SQLStatement Modifier and Type Method Description static List<SQLStatement>FromSubqueryResolver. resolve(SQLCreateViewStatement stmt)Constructor parameters in com.alibaba.druid.sql.dialect.mysql.visitor.transform with type arguments of type SQLStatement Constructor Description FromSubqueryResolver(List<SQLStatement> targetList, String viewName) -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.odps.ast
Classes in com.alibaba.druid.sql.dialect.odps.ast that implement SQLStatement Modifier and Type Class Description classOdpsAddAccountProviderStatementclassOdpsAddFileStatementclassOdpsAddStatisticStatementclassOdpsAddTableStatementclassOdpsAddUserStatementclassOdpsCopyStmtclassOdpsCountStatementclassOdpsCreateTableStatementclassOdpsDeclareVariableStatementclassOdpsExstoreStatementclassOdpsGrantStmtclassOdpsInstallPackageStatementclassOdpsListStmtclassOdpsPAIStmtclassOdpsQueryAliasStatementclassOdpsReadStatementclassOdpsRemoveStatisticStatementclassOdpsRemoveUserStatementclassOdpsRestoreStatementclassOdpsSetLabelStatementclassOdpsShowChangelogsStatementclassOdpsShowGrantsStmtclassOdpsStatementImplclassOdpsUndoTableStatementclassOdpsUnloadStatement -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.odps.parser
Methods in com.alibaba.druid.sql.dialect.odps.parser that return SQLStatement Modifier and Type Method Description SQLStatementOdpsStatementParser. parseBlock()SQLStatementOdpsStatementParser. parseClone()SQLStatementOdpsStatementParser. parseCopy()SQLStatementOdpsStatementParser. parseCost()SQLStatementOdpsStatementParser. parseIf()SQLStatementOdpsStatementParser. parseInsert()SQLStatementOdpsStatementParser. parseKill()SQLStatementOdpsStatementParser. parseSet()SQLStatementOdpsStatementParser. parseShow()SQLStatementOdpsStatementParser. parseUnload()Method parameters in com.alibaba.druid.sql.dialect.odps.parser with type arguments of type SQLStatement Modifier and Type Method Description booleanOdpsStatementParser. parseStatementListDialect(List<SQLStatement> statementList) -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.oracle.ast.stmt
Subinterfaces of SQLStatement in com.alibaba.druid.sql.dialect.oracle.ast.stmt Modifier and Type Interface Description interfaceOracleAlterStatementinterfaceOracleDDLStatementinterfaceOracleStatementMethods in com.alibaba.druid.sql.dialect.oracle.ast.stmt that return types with arguments of type SQLStatement Modifier and Type Method Description List<SQLStatement>OracleCreatePackageStatement. getStatements() -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.oracle.parser
Methods in com.alibaba.druid.sql.dialect.oracle.parser that return SQLStatement Modifier and Type Method Description SQLStatementOracleFunctionDataType. getBlock()SQLStatementOracleProcedureDataType. getBlock()protected SQLStatementOracleStatementParser. parseAlterFunction()protected SQLStatementOracleStatementParser. parseAlterPackage()protected SQLStatementOracleStatementParser. parseAlterType()SQLStatementOracleStatementParser. parseBlock()SQLStatementOracleStatementParser. parseCase()SQLStatementOracleStatementParser. parseCreateDbLink()SQLStatementOracleStatementParser. parseCreatePackage()SQLStatementOracleStatementParser. parseCreateSynonym()protected SQLStatementOracleStatementParser. parseCreateTableSpace()SQLStatementOracleStatementParser. parseCreateType()SQLStatementOracleStatementParser. parseDropMaterializedView()SQLStatementOracleStatementParser. parseDropPackage()SQLStatementOracleStatementParser. parseDropSynonym()SQLStatementOracleStatementParser. parseDropType()SQLStatementOracleStatementParser. parseExecute()SQLStatementOracleStatementParser. parseFunction()SQLStatementOracleStatementParser. parsePipeRow()SQLStatementOracleStatementParser. parseRaise()SQLStatementOracleStatementParser. parserAlter()SQLStatementOracleStatementParser. parseRename()SQLStatementOracleStatementParser. parseReturn()SQLStatementOracleStatementParser. parseSet()Methods in com.alibaba.druid.sql.dialect.oracle.parser with parameters of type SQLStatement Modifier and Type Method Description voidOracleFunctionDataType. setBlock(SQLStatement block)voidOracleProcedureDataType. setBlock(SQLStatement block)Method parameters in com.alibaba.druid.sql.dialect.oracle.parser with type arguments of type SQLStatement Modifier and Type Method Description voidOracleStatementParser. parseStatementList(List<SQLStatement> statementList, int max, SQLObject parent) -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.oscar.ast.stmt
Subinterfaces of SQLStatement in com.alibaba.druid.sql.dialect.oscar.ast.stmt Modifier and Type Interface Description interfaceOscarStatementClasses in com.alibaba.druid.sql.dialect.oscar.ast.stmt that implement SQLStatement Modifier and Type Class Description classOscarAlterSchemaStatementclassOscarConnectToStatementclassOscarCreateSchemaStatementclassOscarDeleteStatementclassOscarDropSchemaStatementclassOscarInsertStatementclassOscarSelectStatementclassOscarShowStatementclassOscarStartTransactionStatementclassOscarUpdateStatement -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.oscar.visitor
Methods in com.alibaba.druid.sql.dialect.oscar.visitor that return SQLStatement Modifier and Type Method Description protected SQLStatementOscarStatementParser. alterSchema()SQLStatementOscarStatementParser. parseCommit()SQLStatementOscarStatementParser. parseConnectTo()SQLStatementOscarStatementParser. parseSet()SQLStatementOscarStatementParser. parseShow()SQLStatementOscarStatementParser. parseWith()Method parameters in com.alibaba.druid.sql.dialect.oscar.visitor with type arguments of type SQLStatement Modifier and Type Method Description booleanOscarStatementParser. parseStatementListDialect(List<SQLStatement> statementList) -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.phoenix.ast
Classes in com.alibaba.druid.sql.dialect.phoenix.ast that implement SQLStatement Modifier and Type Class Description classPhoenixStatementImplCreated by wenshao on 16/9/14.classPhoenixUpsertStatementCreated by wenshao on 16/9/14. -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.postgresql.ast.stmt
Subinterfaces of SQLStatement in com.alibaba.druid.sql.dialect.postgresql.ast.stmt Modifier and Type Interface Description interfacePGSQLStatementClasses in com.alibaba.druid.sql.dialect.postgresql.ast.stmt that implement SQLStatement Modifier and Type Class Description classPGAlterDatabaseStatementclassPGAlterSchemaStatementclassPGAnalyzeStatementclassPGConnectToStatementclassPGCreateDatabaseStatementclassPGCreateSchemaStatementclassPGDeleteStatementclassPGDoStatementclassPGDropDatabaseStatementclassPGDropSchemaStatementclassPGEndTransactionStatementclassPGInsertStatementclassPGSelectStatementclassPGShowStatementclassPGStartTransactionStatementclassPGUpdateStatementclassPGVacuumStatementMethods in com.alibaba.druid.sql.dialect.postgresql.ast.stmt that return SQLStatement Modifier and Type Method Description SQLStatementPGDoStatement. getBlock()Methods in com.alibaba.druid.sql.dialect.postgresql.ast.stmt with parameters of type SQLStatement Modifier and Type Method Description voidPGDoStatement. setBlock(SQLStatement block) -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.postgresql.parser
Methods in com.alibaba.druid.sql.dialect.postgresql.parser that return SQLStatement Modifier and Type Method Description protected SQLStatementPGSQLStatementParser. alterSchema()SQLStatementPGSQLStatementParser. parseCommit()SQLStatementPGSQLStatementParser. parseConnectTo()SQLStatementPGSQLStatementParser. parseCreateUser()SQLStatementPGSQLStatementParser. parseSet()SQLStatementPGSQLStatementParser. parseShow()SQLStatementPGSQLStatementParser. parseWith()Method parameters in com.alibaba.druid.sql.dialect.postgresql.parser with type arguments of type SQLStatement Modifier and Type Method Description booleanPGSQLStatementParser. parseStatementListDialect(List<SQLStatement> statementList) -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.presto.ast.stmt
Subinterfaces of SQLStatement in com.alibaba.druid.sql.dialect.presto.ast.stmt Modifier and Type Interface Description interfacePrestoSQLStatementClasses in com.alibaba.druid.sql.dialect.presto.ast.stmt that implement SQLStatement Modifier and Type Class Description classPrestoAlterFunctionStatementclassPrestoAlterSchemaStatementclassPrestoCreateTableStatementclassPrestoDeallocatePrepareStatementclassPrestoExecuteStatementclassPrestoPrepareStatementclassPrestoSelectStatementpresto 的 select语句 -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.presto.parser
Methods in com.alibaba.druid.sql.dialect.presto.parser that return SQLStatement Modifier and Type Method Description protected SQLStatementPrestoStatementParser. alterSchema()protected SQLStatementPrestoStatementParser. parseAlterFunction()SQLStatementPrestoStatementParser. parseInsert()Method parameters in com.alibaba.druid.sql.dialect.presto.parser with type arguments of type SQLStatement Modifier and Type Method Description booleanPrestoStatementParser. parseStatementListDialect(List<SQLStatement> statementList) -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.redshift.stmt
Classes in com.alibaba.druid.sql.dialect.redshift.stmt that implement SQLStatement Modifier and Type Class Description classRedshiftCreateTableStatement -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.spark.ast
Classes in com.alibaba.druid.sql.dialect.spark.ast that implement SQLStatement Modifier and Type Class Description classSparkCreateTableStatement -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.spark.ast.stmt
Classes in com.alibaba.druid.sql.dialect.spark.ast.stmt that implement SQLStatement Modifier and Type Class Description classSparkCacheTableStatementclassSparkCreateScanStatement -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.spark.parser
Methods in com.alibaba.druid.sql.dialect.spark.parser that return SQLStatement Modifier and Type Method Description SQLStatementSparkStatementParser. parseCreateScan()Method parameters in com.alibaba.druid.sql.dialect.spark.parser with type arguments of type SQLStatement Modifier and Type Method Description booleanSparkStatementParser. parseStatementListDialect(List<SQLStatement> statementList) -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.sqlserver.ast
Subinterfaces of SQLStatement in com.alibaba.druid.sql.dialect.sqlserver.ast Modifier and Type Interface Description interfaceSQLServerStatementClasses in com.alibaba.druid.sql.dialect.sqlserver.ast that implement SQLStatement Modifier and Type Class Description classSQLServerStatementImpl -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.sqlserver.ast.stmt
Classes in com.alibaba.druid.sql.dialect.sqlserver.ast.stmt that implement SQLStatement Modifier and Type Class Description classSQLServerExecStatementclassSQLServerInsertStatementclassSQLServerRollbackStatementclassSQLServerSetTransactionIsolationLevelStatementclassSQLServerUpdateStatementclassSQLServerWaitForStatementMethods in com.alibaba.druid.sql.dialect.sqlserver.ast.stmt that return SQLStatement Modifier and Type Method Description SQLStatementSQLServerWaitForStatement. getStatement()Methods in com.alibaba.druid.sql.dialect.sqlserver.ast.stmt with parameters of type SQLStatement Modifier and Type Method Description voidSQLServerWaitForStatement. setStatement(SQLStatement statement) -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.sqlserver.parser
Methods in com.alibaba.druid.sql.dialect.sqlserver.parser that return SQLStatement Modifier and Type Method Description SQLStatementSQLServerStatementParser. parseBlock()SQLStatementSQLServerStatementParser. parseCommit()SQLStatementSQLServerStatementParser. parseDeclare()SQLStatementSQLServerStatementParser. parseInsert()SQLStatementSQLServerStatementParser. parseSet()Method parameters in com.alibaba.druid.sql.dialect.sqlserver.parser with type arguments of type SQLStatement Modifier and Type Method Description booleanSQLServerStatementParser. parseStatementListDialect(List<SQLStatement> statementList) -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.starrocks.ast.statement
Classes in com.alibaba.druid.sql.dialect.starrocks.ast.statement that implement SQLStatement Modifier and Type Class Description classStarRocksCreateResourceStatementclassStarRocksCreateTableStatement -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.starrocks.parser
Methods in com.alibaba.druid.sql.dialect.starrocks.parser that return SQLStatement Modifier and Type Method Description protected SQLStatementStarRocksStatementParser. createResource() -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.synapse.ast.stmt
Classes in com.alibaba.druid.sql.dialect.synapse.ast.stmt that implement SQLStatement Modifier and Type Class Description classSynapseCreateTableStatement -
Uses of SQLStatement in com.alibaba.druid.sql.dialect.teradata.ast
Classes in com.alibaba.druid.sql.dialect.teradata.ast that implement SQLStatement Modifier and Type Class Description classTDCreateTableStatement -
Uses of SQLStatement in com.alibaba.druid.sql.parser
Methods in com.alibaba.druid.sql.parser that return SQLStatement Modifier and Type Method Description protected SQLStatementSQLStatementParser. alterDatabase()protected SQLStatementSQLStatementParser. alterEvent()protected SQLStatementSQLStatementParser. alterFullText()protected SQLStatementSQLStatementParser. alterIndex()SQLStatementSQLStatementParser. alterMaterialized()protected SQLStatementSQLStatementParser. alterProcedure()protected SQLStatementSQLStatementParser. alterResourceGroup()protected SQLStatementSQLStatementParser. alterRest(Lexer.SavePoint mark)protected SQLStatementSQLStatementParser. alterSchema()protected SQLStatementSQLStatementParser. alterTableSpace()SQLStatementSQLStatementParser. alterUser()protected SQLStatementSQLStatementParser. alterView()protected SQLStatementSQLStatementParser. createResource()protected SQLStatementSQLStatementParser. createTableRest(Lexer.SavePoint mark)SQLStatementSQLStatementParser. parseAlter()protected SQLStatementSQLStatementParser. parseAlterFunction()protected SQLStatementSQLStatementParser. parseAnalyze()SQLStatementSQLStatementParser. parseBlock()SQLStatementSQLStatementParser. parseCache()SQLStatementSQLStatementParser. parseCase()SQLStatementSQLStatementParser. parseClone()SQLStatementSQLStatementParser. parseClose()SQLStatementSQLStatementParser. parseCommit()SQLStatementSQLStatementParser. parseContinue()SQLStatementSQLStatementParser. parseCopy()SQLStatementSQLStatementParser. parseCreate()SQLStatementSQLStatementParser. parseCreateDatabase()SQLStatementSQLStatementParser. parseCreateDbLink()protected SQLStatementSQLStatementParser. parseCreateEvent()SQLStatementSQLStatementParser. parseCreateExternalCatalog()SQLStatementSQLStatementParser. parseCreateMaterializedView()protected SQLStatementSQLStatementParser. parseCreateModel()protected SQLStatementSQLStatementParser. parseCreateOutline()SQLStatementSQLStatementParser. parseCreatePackage()SQLStatementSQLStatementParser. parseCreateRole()SQLStatementSQLStatementParser. parseCreateScan()SQLStatementSQLStatementParser. parseCreateSchema()protected SQLStatementSQLStatementParser. parseCreateServer()SQLStatementSQLStatementParser. parseCreateSynonym()SQLStatementSQLStatementParser. parseCreateTableGroup()protected SQLStatementSQLStatementParser. parseCreateTableSpace()SQLStatementSQLStatementParser. parseCreateType()SQLStatementSQLStatementParser. parseCreateUser()SQLStatementSQLStatementParser. parseDeclare()SQLStatementSQLStatementParser. parseDescribe()SQLStatementSQLStatementParser. parseDrop()protected SQLStatementSQLStatementParser. parseDropCatalog()protected SQLStatementSQLStatementParser. parseDropEvent()SQLStatementSQLStatementParser. parseDropIndex()protected SQLStatementSQLStatementParser. parseDropLogFileGroup()SQLStatementSQLStatementParser. parseDropMaterializedView()SQLStatementSQLStatementParser. parseDropOfflineModel()protected SQLStatementSQLStatementParser. parseDropOutline()protected SQLStatementSQLStatementParser. parseDropResource()protected SQLStatementSQLStatementParser. parseDropRole()protected SQLStatementSQLStatementParser. parseDropServer()protected SQLStatementSQLStatementParser. parseDropTableGroup()SQLStatementSQLStatementParser. parseDump()SQLStatementSQLStatementParser. parseEnd()SQLStatementSQLStatementParser. parseExecute()SQLStatementSQLStatementParser. parseFlashback()SQLStatementSQLStatementParser. parseFor()SQLStatementSQLStatementParser. parseIf()SQLStatementSQLStatementParser. parseInsert()SQLStatementSQLStatementParser. parseKill()SQLStatementSQLStatementParser. parseLeave()SQLStatementSQLStatementParser. parseList()SQLStatementSQLStatementParser. parseLoop()SQLStatementSQLStatementParser. parseMerge()protected SQLStatementSQLStatementParser. parseMsck()SQLStatementSQLStatementParser. parseOptimize()SQLStatementSQLStatementParser. parsePurge()SQLStatementSQLStatementParser. parseRefresh()SQLStatementSQLStatementParser. parseReleaseSavePoint()SQLStatementSQLStatementParser. parseRename()SQLStatementSQLStatementParser. parseRepeat()SQLStatementSQLStatementParser. parseReturn()SQLStatementSQLStatementParser. parseRollback()SQLStatementSQLStatementParser. parseSavePoint()SQLStatementSQLStatementParser. parseSelect()SQLStatementSQLStatementParser. parseSet()SQLStatementSQLStatementParser. parseShow()SQLStatementSQLStatementParser. parseShowMaterializedView()SQLStatementSQLStatementParser. parseStatement()protected SQLStatementSQLStatementParser. parseStatement0()SQLStatementSQLStatementParser. parseTruncate()SQLStatementSQLStatementParser. parseUpsert()protected SQLStatementSQLStatementParser. parseWhoami()SQLStatementSQLStatementParser. parseWith()Methods in com.alibaba.druid.sql.parser that return types with arguments of type SQLStatement Modifier and Type Method Description List<SQLStatement>SQLStatementParser. parseStatementList()List<SQLStatement>SQLStatementParser. parseStatementList(SQLObject parent)Method parameters in com.alibaba.druid.sql.parser with type arguments of type SQLStatement Modifier and Type Method Description voidSQLStatementParser. parseStatementList(List<SQLStatement> statementList)voidSQLStatementParser. parseStatementList(List<SQLStatement> statementList, int max)voidSQLStatementParser. parseStatementList(List<SQLStatement> statementList, int max, SQLObject parent)booleanSQLStatementParser. parseStatementListDialect(List<SQLStatement> statementList) -
Uses of SQLStatement in com.alibaba.druid.sql.repository
Methods in com.alibaba.druid.sql.repository that return SQLStatement Modifier and Type Method Description SQLStatementSchemaObject. getStatement()Methods in com.alibaba.druid.sql.repository with parameters of type SQLStatement Modifier and Type Method Description voidSchemaRepository. accept(SQLStatement stmt)voidSchemaRepository. resolve(SQLStatement stmt, SchemaResolveVisitor.Option... options)Constructors in com.alibaba.druid.sql.repository with parameters of type SQLStatement Constructor Description SchemaObject(Schema schema, String name, SchemaObjectType type, SQLStatement statement) -
Uses of SQLStatement in com.alibaba.druid.sql.visitor
Methods in com.alibaba.druid.sql.visitor that return SQLStatement Modifier and Type Method Description static SQLStatementParameterizedOutputVisitorUtils. parameterizeOf(String sql, DbType dbType)static SQLStatementParameterizedOutputVisitorUtils. parameterizeOf(String sql, List<Object> outParameters, DbType dbType)Methods in com.alibaba.druid.sql.visitor with parameters of type SQLStatement Modifier and Type Method Description static voidSQLDataTypeValidator. check(SQLStatement stmt)static StringParameterizedOutputVisitorUtils. parameterize(SQLStatement stmt, DbType dbType)Method parameters in com.alibaba.druid.sql.visitor with type arguments of type SQLStatement Modifier and Type Method Description static voidSQLDataTypeValidator. check(List<SQLStatement> stmtList)static voidSQLDataTypeValidator. check(List<SQLStatement> stmtList, DbType dbType)static StringParameterizedOutputVisitorUtils. parameterize(List<SQLStatement> statementList, DbType dbType)voidSQLASTOutputVisitor. visitStatementList(List<SQLStatement> statementList) -
Uses of SQLStatement in com.alibaba.druid.wall
Methods in com.alibaba.druid.wall that return types with arguments of type SQLStatement Modifier and Type Method Description List<SQLStatement>WallCheckResult. getStatementList()Constructor parameters in com.alibaba.druid.wall with type arguments of type SQLStatement Constructor Description WallCheckResult(WallSqlStat sqlStat, List<SQLStatement> stmtList)
-