Package org.hibernate.id
Class IdentityGenerator.InsertSelectDelegate
- java.lang.Object
-
- org.hibernate.id.insert.AbstractReturningDelegate
-
- org.hibernate.id.IdentityGenerator.InsertSelectDelegate
-
- All Implemented Interfaces:
InsertGeneratedIdentifierDelegate
- Enclosing class:
- IdentityGenerator
public static class IdentityGenerator.InsertSelectDelegate extends AbstractReturningDelegate implements InsertGeneratedIdentifierDelegate
Delegate for dealing with IDENTITY columns where the dialect supports returning the generated IDENTITY value directly from the insert statement.
-
-
Constructor Summary
Constructors Constructor Description InsertSelectDelegate(PostInsertIdentityPersister persister, Dialect dialect)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SerializabledetermineGeneratedIdentifier(SharedSessionContractImplementor session, Object entity)SerializableexecuteAndExtract(PreparedStatement insert, SharedSessionContractImplementor session)protected PreparedStatementprepare(String insertSQL, SharedSessionContractImplementor session)IdentifierGeneratingInsertprepareIdentifierGeneratingInsert()Build aInsertspecific to the delegate's mode of handling generated key values.-
Methods inherited from class org.hibernate.id.insert.AbstractReturningDelegate
getPersister, performInsert, releaseStatement
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.id.insert.InsertGeneratedIdentifierDelegate
performInsert
-
-
-
-
Constructor Detail
-
InsertSelectDelegate
public InsertSelectDelegate(PostInsertIdentityPersister persister, Dialect dialect)
-
-
Method Detail
-
prepareIdentifierGeneratingInsert
public IdentifierGeneratingInsert prepareIdentifierGeneratingInsert()
Description copied from interface:InsertGeneratedIdentifierDelegateBuild aInsertspecific to the delegate's mode of handling generated key values.- Specified by:
prepareIdentifierGeneratingInsertin interfaceInsertGeneratedIdentifierDelegate- Returns:
- The insert object.
-
prepare
protected PreparedStatement prepare(String insertSQL, SharedSessionContractImplementor session) throws SQLException
- Specified by:
preparein classAbstractReturningDelegate- Throws:
SQLException
-
executeAndExtract
public Serializable executeAndExtract(PreparedStatement insert, SharedSessionContractImplementor session) throws SQLException
- Specified by:
executeAndExtractin classAbstractReturningDelegate- Throws:
SQLException
-
determineGeneratedIdentifier
public Serializable determineGeneratedIdentifier(SharedSessionContractImplementor session, Object entity)
-
-