Package org.hibernate.id.insert
Interface InsertGeneratedIdentifierDelegate
-
- All Known Implementing Classes:
AbstractReturningDelegate
,AbstractSelectingDelegate
,GetGeneratedKeysDelegate
,IdentityGenerator.BasicDelegate
,IdentityGenerator.InsertSelectDelegate
,Oracle12cGetGeneratedKeysDelegate
,SelectGenerator.SelectGeneratorDelegate
public interface InsertGeneratedIdentifierDelegate
Responsible for handling delegation relating to variants in how insert-generated-identifier generator strategies dictate processing:- building the sql insert statement
- determination of the generated identifier value
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Object
performInsert(String insertSQL, SharedSessionContractImplementor session, Binder binder)
Perform the indicated insert SQL statement and determine the identifier value generated.default String
prepareIdentifierGeneratingInsert(String insertSQL)
Append SQL specific to the delegate's mode of handling generated key values.IdentifierGeneratingInsert
prepareIdentifierGeneratingInsert(SqlStringGenerationContext context)
Build aInsert
specific to the delegate's mode of handling generated key values.
-
-
-
Method Detail
-
prepareIdentifierGeneratingInsert
IdentifierGeneratingInsert prepareIdentifierGeneratingInsert(SqlStringGenerationContext context)
Build aInsert
specific to the delegate's mode of handling generated key values.- Parameters:
context
- A context to help generate SQL strings- Returns:
- The insert object.
-
prepareIdentifierGeneratingInsert
default String prepareIdentifierGeneratingInsert(String insertSQL)
Append SQL specific to the delegate's mode of handling generated key values.- Returns:
- The insert SQL.
-
performInsert
Object performInsert(String insertSQL, SharedSessionContractImplementor session, Binder binder)
Perform the indicated insert SQL statement and determine the identifier value generated.- Parameters:
insertSQL
- The INSERT statement stringsession
- The session in which we are operatingbinder
- The param binder- Returns:
- The generated identifier value.
-
-