Uses of Class
org.hibernate.generator.values.AbstractGeneratedValuesMutationDelegate
Packages that use AbstractGeneratedValuesMutationDelegate
Package
Description
Contains a framework of strategies for retrieving database-generated ids.
-
Uses of AbstractGeneratedValuesMutationDelegate in org.hibernate.id.insert
Subclasses of AbstractGeneratedValuesMutationDelegate in org.hibernate.id.insertModifier and TypeClassDescriptionclass
AbstractGeneratedValuesMutationDelegate
implementation where the underlying strategy causes the generated identifier to be returned as an effect of performing the insert statement.class
AbstractGeneratedValuesMutationDelegate
implementation where the underlying strategy requires a subsequentselect
after theinsert
to determine the generated identifier.class
Delegate for dealing withIDENTITY
columns where the dialect requires an additional command execution to retrieve the generatedIDENTITY
valueclass
Delegate for dealing with generated values using the JDBC3 methodStatement.getGeneratedKeys()
.class
Delegate for dealing with generated values where the dialect supports returning the generated column directly from the mutation statement.class
SpecializedGetGeneratedKeysDelegate
which appends the database specific clause which signifies to return generatedIDENTITY
values to the end of the insert statement.class
Uses a unique key of the inserted entity to locate the newly inserted row.