org.apache.ojb.broker.util.sequence
Class SequenceManagerNativeImpl
java.lang.Object
org.apache.ojb.broker.util.sequence.AbstractSequenceManager
org.apache.ojb.broker.util.sequence.SequenceManagerNativeImpl
- All Implemented Interfaces:
- SequenceManager
- public class SequenceManagerNativeImpl
- extends AbstractSequenceManager
Sequence manager implementation using native database Identity columns
(like MySQL, MSSQL, ...). For proper work some specific metadata settings
needed:
- field representing the identity column need attribute
autoincrement
'true'
- field representing the identity column need attribute
access
set 'readonly'
- field representing the identity column need attribute
primarykey
set 'true'
- only possible to declare one identity field per class
Note:
Make sure that the DB generated identity columns represent values > 0, because negative values
intern used by this implementation and 0 could cause problems with primitive FK fields.
Implementation configuration properties:
Property Key |
Property Values |
no properties to set |
|
Limitations:
- Native key generation is not 'extent aware'
when extent classes span several tables! Please
see more in shipped docs 'extents and polymorphism'
or sequence manager docs.
-
Only positive identity values are allowed (see above).
- Version:
- $Id: SequenceManagerNativeImpl.java 365232 2005-12-21 22:36:07Z tomdz $
- Author:
- Travis Reeder, Armin Waibel
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SequenceManagerNativeImpl
public SequenceManagerNativeImpl(PersistenceBroker broker)
afterStore
public void afterStore(JdbcAccess dbAccess,
ClassDescriptor cld,
java.lang.Object obj)
throws SequenceManagerException
- Description copied from class:
AbstractSequenceManager
- noop
- Specified by:
afterStore
in interface SequenceManager
- Overrides:
afterStore
in class AbstractSequenceManager
- Throws:
SequenceManagerException
(C) 2002 - 2005 Apache Software Foundation
All rights reserved. Published under the Apache License 2.0.
http://db.apache.org/ojb
Version: 1.0.4, 2005-12-30