Package org.hibernate.dialect.identity
Class SybaseAnywhereIdentityColumnSupport
- java.lang.Object
-
- org.hibernate.dialect.identity.IdentityColumnSupportImpl
-
- org.hibernate.dialect.identity.AbstractTransactSQLIdentityColumnSupport
-
- org.hibernate.dialect.identity.SybaseAnywhereIdentityColumnSupport
-
- All Implemented Interfaces:
IdentityColumnSupport
public class SybaseAnywhereIdentityColumnSupport extends AbstractTransactSQLIdentityColumnSupport
-
-
Constructor Summary
Constructors Constructor Description SybaseAnywhereIdentityColumnSupport()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
supportsInsertSelectIdentity()
Does the dialect support some form of inserting and selecting the generated IDENTITY value all in the same statement.-
Methods inherited from class org.hibernate.dialect.identity.AbstractTransactSQLIdentityColumnSupport
appendIdentitySelectToInsert, getIdentityColumnString, getIdentitySelectString, supportsIdentityColumns
-
Methods inherited from class org.hibernate.dialect.identity.IdentityColumnSupportImpl
buildGetGeneratedKeysDelegate, getIdentityInsertString, hasDataTypeInIdentityColumn
-
-
-
-
Method Detail
-
supportsInsertSelectIdentity
public boolean supportsInsertSelectIdentity()
Description copied from interface:IdentityColumnSupport
Does the dialect support some form of inserting and selecting the generated IDENTITY value all in the same statement.- Specified by:
supportsInsertSelectIdentity
in interfaceIdentityColumnSupport
- Overrides:
supportsInsertSelectIdentity
in classAbstractTransactSQLIdentityColumnSupport
- Returns:
- True if the dialect supports selecting the just generated IDENTITY in the insert statement.
-
-