org.apache.cayenne.dba.db2
Class DB2PkGenerator

java.lang.Object
  extended by org.apache.cayenne.dba.JdbcPkGenerator
      extended by org.apache.cayenne.dba.db2.DB2PkGenerator
All Implemented Interfaces:
PkGenerator

public class DB2PkGenerator
extends JdbcPkGenerator

A sequence-based PK generator used by DB2Adapter.

Author:
Andrus Adamchik

Field Summary
static java.lang.String SEQUENCE_PREFIX
          Deprecated. since 2.0 - other generators do not expose the default prefix.
 
Fields inherited from class org.apache.cayenne.dba.JdbcPkGenerator
DEFAULT_PK_CACHE_SIZE, NEXT_ID, objDesc, pkCache, pkCacheSize, resultDesc
 
Constructor Summary
DB2PkGenerator()
           
 
Method Summary
 void createAutoPk(DataNode node, java.util.List dbEntities)
          Generates necessary database objects to provide automatic primary key support.
 java.util.List createAutoPkStatements(java.util.List dbEntities)
          Creates a list of CREATE SEQUENCE statements for the list of DbEntities.
protected  java.lang.String createSequenceString(DbEntity entity)
          Returns CREATE SEQUENCE statement for entity.
 void dropAutoPk(DataNode node, java.util.List dbEntities)
          Drops PK sequences for all specified DbEntities.
 java.util.List dropAutoPkStatements(java.util.List dbEntities)
          Creates a list of DROP SEQUENCE statements for the list of DbEntities.
protected  java.lang.String dropSequenceString(DbEntity entity)
          Returns DROP SEQUENCE statement.
protected  java.util.List getExistingSequences(DataNode node)
          Fetches a list of existing sequences that might match Cayenne generated ones.
protected  int pkFromDatabase(DataNode node, DbEntity ent)
          Performs primary key generation ignoring cache.
protected  java.lang.String sequenceName(DbEntity entity)
          Returns default sequence name for DbEntity.
 
Methods inherited from class org.apache.cayenne.dba.JdbcPkGenerator
autoPkTableExists, binaryPK, dropAutoPkString, generatePkForDbEntity, generatePkForDbEntityString, getPkCacheSize, pkCreateString, pkDeleteString, pkSelectString, pkTableCreateString, pkUpdateString, reset, runUpdate, setPkCacheSize
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

SEQUENCE_PREFIX

public static final java.lang.String SEQUENCE_PREFIX
Deprecated. since 2.0 - other generators do not expose the default prefix.
See Also:
Constant Field Values
Constructor Detail

DB2PkGenerator

public DB2PkGenerator()
Method Detail

pkFromDatabase

protected int pkFromDatabase(DataNode node,
                             DbEntity ent)
                      throws java.lang.Exception
Description copied from class: JdbcPkGenerator
Performs primary key generation ignoring cache. Generates a range of primary keys as specified by "pkCacheSize" bean property.

This method is called internally from "generatePkForDbEntity" and then generated range of key values is saved in cache for performance. Subclasses that implement different primary key generation solutions should override this method, not "generatePkForDbEntity".

Overrides:
pkFromDatabase in class JdbcPkGenerator
Throws:
java.lang.Exception

createAutoPk

public void createAutoPk(DataNode node,
                         java.util.List dbEntities)
                  throws java.lang.Exception
Description copied from interface: PkGenerator
Generates necessary database objects to provide automatic primary key support.

Specified by:
createAutoPk in interface PkGenerator
Overrides:
createAutoPk in class JdbcPkGenerator
Parameters:
node - node that provides access to a DataSource.
dbEntities - a list of entities that require primary key autogeneration support
Throws:
java.lang.Exception

createAutoPkStatements

public java.util.List createAutoPkStatements(java.util.List dbEntities)
Creates a list of CREATE SEQUENCE statements for the list of DbEntities.

Specified by:
createAutoPkStatements in interface PkGenerator
Overrides:
createAutoPkStatements in class JdbcPkGenerator

dropAutoPk

public void dropAutoPk(DataNode node,
                       java.util.List dbEntities)
                throws java.lang.Exception
Drops PK sequences for all specified DbEntities.

Specified by:
dropAutoPk in interface PkGenerator
Overrides:
dropAutoPk in class JdbcPkGenerator
Parameters:
node - node that provides access to a DataSource.
dbEntities - a list of entities whose primary key autogeneration support should be dropped.
Throws:
java.lang.Exception

dropAutoPkStatements

public java.util.List dropAutoPkStatements(java.util.List dbEntities)
Creates a list of DROP SEQUENCE statements for the list of DbEntities.

Specified by:
dropAutoPkStatements in interface PkGenerator
Overrides:
dropAutoPkStatements in class JdbcPkGenerator

getExistingSequences

protected java.util.List getExistingSequences(DataNode node)
                                       throws java.sql.SQLException
Fetches a list of existing sequences that might match Cayenne generated ones.

Throws:
java.sql.SQLException

sequenceName

protected java.lang.String sequenceName(DbEntity entity)
Returns default sequence name for DbEntity.


dropSequenceString

protected java.lang.String dropSequenceString(DbEntity entity)
Returns DROP SEQUENCE statement.


createSequenceString

protected java.lang.String createSequenceString(DbEntity entity)
Returns CREATE SEQUENCE statement for entity.



Copyright © 2001-2006 Apache.org All Rights Reserved.