Uses of Class
org.hibernate.boot.model.relational.Database
Packages that use Database
Package
Description
This package contains the interfaces that make up the bootstrap API
for Hibernate.
This API allows intervention by generic code in the process of determining the names of
database objects (tables, columns, and constraints).
Some SPIs related to DDL generation and schema management.
A range of SPIs allowing integration with—and customization of—the process of building metadata.
This package abstracts over the multifarious dialects of SQL
understood by the databases supported by Hibernate.
This package defines an abstraction over all kinds of automatic
value generation, including id generation and version number
generation.
This package and its subpackages, especially
org.hibernate.id.enhanced
,
contain the built-in id generators, all of which implement either
IdentifierGenerator
or
PostInsertIdentifierGenerator
.Enhanced/improved versions of table and sequence based identifier generators
targeting portability and unified configuration.
This package defines the Hibernate configuration-time mapping model.
Defines handling of almost the full range of standard JDBC-defined SQL data types.
-
Uses of Database in org.hibernate.boot
Methods in org.hibernate.boot that return Database -
Uses of Database in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal that return DatabaseModifier and TypeMethodDescriptionInFlightMetadataCollectorImpl.getDatabase()
MetadataImpl.getDatabase()
Constructors in org.hibernate.boot.internal with parameters of type DatabaseModifierConstructorDescriptionMetadataImpl
(UUID uuid, MetadataBuildingOptions metadataBuildingOptions, Map<String, PersistentClass> entityBindingMap, List<Component> composites, Map<Class<?>, Component> genericComponentsMap, Map<Class<?>, DiscriminatorType<?>> embeddableDiscriminatorTypesMap, Map<Class<?>, MappedSuperclass> mappedSuperclassMap, Map<String, Collection> collectionBindingMap, Map<String, TypeDefinition> typeDefinitionMap, Map<String, FilterDefinition> filterDefinitionMap, Map<String, FetchProfile> fetchProfileMap, Map<String, String> imports, Map<String, IdentifierGeneratorDefinition> idGeneratorDefinitionMap, Map<String, NamedHqlQueryDefinition<?>> namedQueryMap, Map<String, NamedNativeQueryDefinition<?>> namedNativeQueryMap, Map<String, NamedProcedureCallDefinition> namedProcedureCallMap, Map<String, NamedResultSetMappingDescriptor> sqlResultSetMappingMap, Map<String, NamedEntityGraphDefinition> namedEntityGraphMap, Map<String, SqmFunctionDescriptor> sqlFunctionMap, Database database, BootstrapContext bootstrapContext) -
Uses of Database in org.hibernate.boot.model.naming
Methods in org.hibernate.boot.model.naming that return Database -
Uses of Database in org.hibernate.boot.model.relational
Methods in org.hibernate.boot.model.relational with parameters of type DatabaseModifier and TypeMethodDescriptionvoid
ExportableProducer.registerExportables
(Database database) Register the contained exportable things to theDatabase
-
Uses of Database in org.hibernate.boot.model.relational.internal
Methods in org.hibernate.boot.model.relational.internal with parameters of type DatabaseModifier and TypeMethodDescriptionstatic SqlStringGenerationContext
SqlStringGenerationContextImpl.fromConfigurationMap
(JdbcEnvironment jdbcEnvironment, Database database, Map<String, Object> configurationMap) static SqlStringGenerationContext
SqlStringGenerationContextImpl.fromConfigurationMapForMigration
(JdbcEnvironment jdbcEnvironment, Database database, Map<String, Object> configurationMap) static SqlStringGenerationContext
SqlStringGenerationContextImpl.fromExplicit
(JdbcEnvironment jdbcEnvironment, Database database, String defaultCatalog, String defaultSchema) -
Uses of Database in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return Database -
Uses of Database in org.hibernate.dialect
Methods in org.hibernate.dialect with parameters of type DatabaseModifier and TypeMethodDescriptionvoid
OracleArrayJdbcType.addAuxiliaryDatabaseObjects
(JavaType<?> javaType, BasicValueConverter<?, ?> valueConverter, Size columnSize, Database database, JdbcTypeIndicators context) void
OracleEnumJdbcType.addAuxiliaryDatabaseObjects
(JavaType<?> javaType, BasicValueConverter<?, ?> valueConverter, Size columnSize, Database database, JdbcTypeIndicators context) void
PostgreSQLEnumJdbcType.addAuxiliaryDatabaseObjects
(JavaType<?> javaType, BasicValueConverter<?, ?> valueConverter, Size columnSize, Database database, JdbcTypeIndicators context) OracleArrayJdbcType.getExtraCreateTableInfo
(JavaType<?> javaType, String columnName, String tableName, Database database) OracleBaseStructJdbcType.getExtraCreateTableInfo
(JavaType<?> javaType, String columnName, String tableName, Database database) OracleNestedTableJdbcType.getExtraCreateTableInfo
(JavaType<?> javaType, String columnName, String tableName, Database database) -
Uses of Database in org.hibernate.envers.enhanced
Methods in org.hibernate.envers.enhanced with parameters of type DatabaseModifier and TypeMethodDescriptionprotected void
OrderedSequenceStructure.buildSequence
(Database database) -
Uses of Database in org.hibernate.generator
Methods in org.hibernate.generator that return DatabaseModifier and TypeMethodDescriptionGeneratorCreationContext.getDatabase()
View of the relational database objects (tables, sequences, etc.) and namespaces (catalogs and schemas). -
Uses of Database in org.hibernate.id
Methods in org.hibernate.id with parameters of type DatabaseModifier and TypeMethodDescriptionvoid
CompositeNestedGeneratedValueGenerator.registerExportables
(Database database) default void
IdentifierGenerator.registerExportables
(Database database) Register database objects used by this identifier generator, for example, a sequence or tables.void
NativeGenerator.registerExportables
(Database database) Constructors in org.hibernate.id with parameters of type DatabaseModifierConstructorDescriptionExportableColumn
(Database database, Table table, String name, BasicType<?> type) ExportableColumn
(Database database, Table table, String name, BasicType<?> type, String dbTypeDeclaration) ValueImpl
(ExportableColumn column, Table table, BasicType<?> type, Database database) -
Uses of Database in org.hibernate.id.enhanced
Methods in org.hibernate.id.enhanced with parameters of type DatabaseModifier and TypeMethodDescriptionprotected void
SequenceStructure.buildSequence
(Database database) void
DatabaseStructure.registerExportables
(Database database) Register database objects involved in this structure, e.g.void
SequenceStructure.registerExportables
(Database database) void
SequenceStyleGenerator.registerExportables
(Database database) void
TableGenerator.registerExportables
(Database database) void
TableStructure.registerExportables
(Database database) -
Uses of Database in org.hibernate.mapping
Methods in org.hibernate.mapping with parameters of type DatabaseModifier and TypeMethodDescriptionvoid
Component.ValueGenerationPlan.registerExportables
(Database database) -
Uses of Database in org.hibernate.testing.orm.junit
Methods in org.hibernate.testing.orm.junit that return Database -
Uses of Database in org.hibernate.testing.util.uuid
Methods in org.hibernate.testing.util.uuid that return Database -
Uses of Database in org.hibernate.type.descriptor.jdbc
Methods in org.hibernate.type.descriptor.jdbc with parameters of type DatabaseModifier and TypeMethodDescriptiondefault void
JdbcType.addAuxiliaryDatabaseObjects
(JavaType<?> javaType, BasicValueConverter<?, ?> valueConverter, Size columnSize, Database database, JdbcTypeIndicators context) default String
JdbcType.getExtraCreateTableInfo
(JavaType<?> javaType, String columnName, String tableName, Database database)