Uses of Interface
org.hibernate.sql.ast.tree.Statement
-
Packages that use Statement Package Description org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.query.sqm.sql Package for the translation of SQM into SQL ASTorg.hibernate.query.sqm.sql.internal org.hibernate.sql.ast Package defining a SQL AST for use in generation of SQL.org.hibernate.sql.ast.spi Package defining support for creating and consuming a SQL AST.org.hibernate.sql.ast.tree Package defining the SQL AST.org.hibernate.sql.ast.tree.cte Support for common table expressions (CTE) in a SQL tree.org.hibernate.sql.ast.tree.delete AST nodes representingdeletestatements in a SQL tree.org.hibernate.sql.ast.tree.insert AST nodes representinginsertstatements in a SQL tree.org.hibernate.sql.ast.tree.select AST nodes representingselectstatements in a SQL tree.org.hibernate.sql.ast.tree.update AST nodes representingupdatestatements in a SQL tree.org.hibernate.sql.model.ast SQL AST extensions for model mutations.org.hibernate.sql.model.internal -
-
Uses of Statement in org.hibernate.dialect
Classes in org.hibernate.dialect with type parameters of type Statement Modifier and Type Class Description classSybaseSqmToSqlAstConverter<T extends Statement>A SQM to SQL AST translator for Sybase ASE. -
Uses of Statement in org.hibernate.query.sqm.sql
Classes in org.hibernate.query.sqm.sql with type parameters of type Statement Modifier and Type Class Description classBaseSqmToSqlAstConverter<T extends Statement>interfaceSqmTranslation<T extends Statement>Information obtained from the interpretation of an SqmStatementinterfaceSqmTranslator<T extends Statement>classStandardSqmTranslation<T extends Statement> -
Uses of Statement in org.hibernate.query.sqm.sql.internal
Classes in org.hibernate.query.sqm.sql.internal with type parameters of type Statement Modifier and Type Class Description classStandardSqmTranslator<T extends Statement>The standard translator for SQM to SQL ASTs. -
Uses of Statement in org.hibernate.sql.ast
Methods in org.hibernate.sql.ast with parameters of type Statement Modifier and Type Method Description static voidSqlTreePrinter. logSqlAst(Statement sqlAstStatement) -
Uses of Statement in org.hibernate.sql.ast.spi
Methods in org.hibernate.sql.ast.spi that return Statement Modifier and Type Method Description protected StatementAbstractSqlAstTranslator. getStatement()Methods in org.hibernate.sql.ast.spi with parameters of type Statement Modifier and Type Method Description protected <T extends JdbcOperation>
SqlAstTranslator<T>StandardSqlAstTranslatorFactory. buildTranslator(SessionFactoryImplementor sessionFactory, Statement statement)Consolidated building of a translator for all Query casesConstructors in org.hibernate.sql.ast.spi with parameters of type Statement Constructor Description AbstractSqlAstTranslator(SessionFactoryImplementor sessionFactory, Statement statement)StandardSqlAstTranslator(SessionFactoryImplementor sessionFactory, Statement statement) -
Uses of Statement in org.hibernate.sql.ast.tree
Subinterfaces of Statement in org.hibernate.sql.ast.tree Modifier and Type Interface Description interfaceMutationStatementSpecialization of Statement for mutation (DML) statementsClasses in org.hibernate.sql.ast.tree that implement Statement Modifier and Type Class Description classAbstractMutationStatementclassAbstractStatementclassAbstractUpdateOrDeleteStatement -
Uses of Statement in org.hibernate.sql.ast.tree.cte
Methods in org.hibernate.sql.ast.tree.cte that return Statement Modifier and Type Method Description StatementCteStatement. getCteDefinition()Constructors in org.hibernate.sql.ast.tree.cte with parameters of type Statement Constructor Description CteStatement(CteTable cteTable, Statement cteDefinition)CteStatement(CteTable cteTable, Statement cteDefinition, CteMaterialization materialization)CteStatement(CteTable cteTable, Statement cteDefinition, CteMaterialization materialization, CteSearchClauseKind searchClauseKind, List<SearchClauseSpecification> searchBySpecifications, CteColumn searchColumn, List<CteColumn> cycleColumns, CteColumn cycleMarkColumn, CteColumn cyclePathColumn, Literal cycleValue, Literal noCycleValue) -
Uses of Statement in org.hibernate.sql.ast.tree.delete
Classes in org.hibernate.sql.ast.tree.delete that implement Statement Modifier and Type Class Description classDeleteStatement -
Uses of Statement in org.hibernate.sql.ast.tree.insert
Subinterfaces of Statement in org.hibernate.sql.ast.tree.insert Modifier and Type Interface Description interfaceInsertStatementSpecialization of MutationStatement for insertsClasses in org.hibernate.sql.ast.tree.insert that implement Statement Modifier and Type Class Description classInsertSelectStatementtodo (6.2) - Would much prefer to split insert-values and insert-select into individual contracts - something like `InsertStatement` and `InsertSelectStatement` e.g. -
Uses of Statement in org.hibernate.sql.ast.tree.select
Classes in org.hibernate.sql.ast.tree.select that implement Statement Modifier and Type Class Description classSelectStatement -
Uses of Statement in org.hibernate.sql.ast.tree.update
Classes in org.hibernate.sql.ast.tree.update that implement Statement Modifier and Type Class Description classUpdateStatement -
Uses of Statement in org.hibernate.sql.model.ast
Subinterfaces of Statement in org.hibernate.sql.model.ast Modifier and Type Interface Description interfaceCustomSqlMutation<O extends JdbcMutationOperation>interfaceRestrictedTableMutation<O extends MutationOperation>Specialized TableMutation implementation for mutations which define a where-clauseinterfaceTableDeleteModels an update to a model (entity or collection) table, triggered from flushinterfaceTableInsertModels an insert into a model (entity or collection) table, triggered from flushinterfaceTableMutation<O extends MutationOperation>Describes the mutation of a model table (mapped by an entity or collection) triggered from flush.interfaceTableUpdate<O extends MutationOperation>Models an update to a model (entity or collection) table, triggered from flushClasses in org.hibernate.sql.model.ast that implement Statement Modifier and Type Class Description classAbstractRestrictedTableMutation<O extends MutationOperation>classAbstractTableDeleteclassAbstractTableInsertclassAbstractTableMutation<O extends MutationOperation>BaseTableMutationsupportclassAbstractTableUpdate<O extends MutationOperation>Base support for TableUpdate implementations -
Uses of Statement in org.hibernate.sql.model.internal
Classes in org.hibernate.sql.model.internal that implement Statement Modifier and Type Class Description classOptionalTableUpdateclassTableDeleteCustomSqlDeletion defined using custom sql-deleteclassTableDeleteStandardclassTableInsertCustomSqlInsertion defined using custom sql-insertclassTableInsertStandardclassTableUpdateCustomSqlUpdate defined using custom sql-updateclassTableUpdateNoSetA skipped updateclassTableUpdateStandard
-