- 
        1. Re: Jboss 3.2.1 Oracle Autoincrementpgrassi Aug 21, 2003 11:07 AM (in response to pgrassi)OK, I figured out the entity command, and it works if the primary key is a single column that is set as autoincrement, but as soon as I make the primary key compound, JBOSS pukes: 
 12:55:36,426 DEBUG [Estimate] Executing SQL: select SEQ_RESTDT.NextVal + 1 FROM dual
 12:55:36,436 DEBUG [Estimate] Create: pk=33631
 12:55:36,436 DEBUG [Estimate] Executing SQL: SELECT COUNT(*) FROM RISER_ACTIVE.ESTIMATE_OV WHERE estimate_id=? AND work_
 order_id=?
 12:55:36,436 ERROR [Estimate] Error checking if entity exists
 javax.ejb.EJBException: Internal error getting primary key field member estimateId; CausedByException is:
 null
 at org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCAbstractCMPFieldBridge.getPrimaryKeyValue(JDBCAbstractCMPFieldBridg
- 
        2. Re: Jboss 3.2.1 Oracle Autoincrementhassanz Aug 21, 2003 11:52 AM (in response to pgrassi)I assume you are using a pl/sql procedure to generete auto increment keys in Oracle. 
 I was having the same problem with the compound keys. and i dont know why it happens.
 I ended up generating my autokeys using the Block Sequence design pattern and it worked like a charm.
 Thanks,
 Hassan
 
    