类 DB2390IdentityColumnSupport
- java.lang.Object
-
- org.hibernate.dialect.identity.IdentityColumnSupportImpl
-
- org.hibernate.dialect.identity.DB2IdentityColumnSupport
-
- org.hibernate.dialect.identity.DB2390IdentityColumnSupport
-
- 所有已实现的接口:
IdentityColumnSupport
public class DB2390IdentityColumnSupport extends DB2IdentityColumnSupport
- 作者:
- Andrea Boriero
-
-
构造器概要
构造器 构造器 说明 DB2390IdentityColumnSupport()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 StringgetIdentitySelectString(String table, String column, int type)Get the select command to use to retrieve the last generated IDENTITY value for a particular table-
从类继承的方法 org.hibernate.dialect.identity.DB2IdentityColumnSupport
getIdentityColumnString, getIdentityInsertString, supportsIdentityColumns
-
从类继承的方法 org.hibernate.dialect.identity.IdentityColumnSupportImpl
appendIdentitySelectToInsert, buildGetGeneratedKeysDelegate, hasDataTypeInIdentityColumn, supportsInsertSelectIdentity
-
-
-
-
方法详细资料
-
getIdentitySelectString
public String getIdentitySelectString(String table, String column, int type)
从接口复制的说明:IdentityColumnSupportGet the select command to use to retrieve the last generated IDENTITY value for a particular table- 指定者:
getIdentitySelectString在接口中IdentityColumnSupport- 覆盖:
getIdentitySelectString在类中DB2IdentityColumnSupport- 参数:
table- The table into which the insert was donecolumn- The PK column.type- TheTypestype code.- 返回:
- The appropriate select command
-
-