Package org.hibernate.dialect.identity
Class DB2390IdentityColumnSupport
- java.lang.Object
-
- org.hibernate.dialect.identity.IdentityColumnSupportImpl
-
- org.hibernate.dialect.identity.DB2IdentityColumnSupport
-
- org.hibernate.dialect.identity.DB2390IdentityColumnSupport
-
- All Implemented Interfaces:
IdentityColumnSupport
public class DB2390IdentityColumnSupport extends DB2IdentityColumnSupport
-
-
Constructor Summary
Constructors Constructor Description DB2390IdentityColumnSupport()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getIdentitySelectString(java.lang.String table, java.lang.String column, int type)
Get the select command to use to retrieve the last generated IDENTITY value for a particular table-
Methods inherited from class org.hibernate.dialect.identity.DB2IdentityColumnSupport
getIdentityColumnString, getIdentityInsertString, supportsIdentityColumns
-
Methods inherited from class org.hibernate.dialect.identity.IdentityColumnSupportImpl
appendIdentitySelectToInsert, buildGetGeneratedKeysDelegate, hasDataTypeInIdentityColumn, supportsInsertSelectIdentity
-
-
-
-
Method Detail
-
getIdentitySelectString
public java.lang.String getIdentitySelectString(java.lang.String table, java.lang.String column, int type)
Description copied from interface:IdentityColumnSupport
Get the select command to use to retrieve the last generated IDENTITY value for a particular table- Specified by:
getIdentitySelectString
in interfaceIdentityColumnSupport
- Overrides:
getIdentitySelectString
in classDB2IdentityColumnSupport
- Parameters:
table
- The table into which the insert was donecolumn
- The PK column.type
- TheTypes
type code.- Returns:
- The appropriate select command
-
-