| AbstractReturningDelegate |
Abstract InsertGeneratedIdentifierDelegate implementation where
the underlying strategy causes the generated identifier to be returned as
an effect of performing the insert statement.
|
| AbstractSelectingDelegate |
Abstract InsertGeneratedIdentifierDelegate implementation where
the underlying strategy requires a subsequent select after the
insert to determine the generated identifier.
|
| BasicSelectingDelegate |
Delegate for dealing with IDENTITY columns where the dialect requires an
additional command execution to retrieve the generated IDENTITY value
|
| GetGeneratedKeysDelegate |
|
| IdentifierGeneratingInsert |
Nothing more than a distinguishing subclass of Insert used to
indicate intent.
|
| InsertReturningDelegate |
Delegate for dealing with IDENTITY columns where the dialect supports
returning the generated IDENTITY value directly from the insert statement.
|
| InsertSelectIdentityInsert |
Specialized IdentifierGeneratingInsert which appends the database
specific clause which signifies to return generated IDENTITY values
to the end of the insert statement.
|
| TableInsertReturningBuilder |
|
| UniqueKeySelectingDelegate |
Uses a unique key of the inserted entity to locate the newly inserted row.
|