which DB do you use?
the platform implementation class have to
override

public String getLastInsertIdentityQuery(String tableName)
{
   // return the sql string to query last inserted Identity value
}

regards,
Armin

R�mi Bars wrote:

hi,

i have done the change and all my records are in the database. But now i get
this error :

what does it mean?

thanks !

remi

org.apache.ojb.broker.util.sequence.SequenceManagerException:
java.lang.UnsupportedOperationException: This feature is not supported by
this implementation

 at
org.apache.ojb.broker.util.sequence.SequenceManagerNativeImpl.getLastInsert(
Unknown Source)

 at
org.apache.ojb.broker.util.sequence.SequenceManagerNativeImpl.afterStore(Unk
nown Source)

 at
org.apache.ojb.broker.core.PersistenceBrokerImpl.storeToDb(PersistenceBroker
Impl.java:1985)

 at
org.apache.ojb.broker.core.PersistenceBrokerImpl.store(PersistenceBrokerImpl
.java:1891)

 at
org.apache.ojb.broker.core.PersistenceBrokerImpl.store(PersistenceBrokerImpl
.java:1849)

 at org.apache.ojb.broker.core.DelegatingPersistenceBroker.store(Unknown
Source)

 at org.apache.ojb.broker.core.DelegatingPersistenceBroker.store(Unknown
Source)

at org.apache.ojb.odmg.states.StateNewDirty.commit(Unknown Source)

 at org.apache.ojb.odmg.ObjectEnvelopeTable.commitAllEnvelopes(Unknown
Source)

at org.apache.ojb.odmg.ObjectEnvelopeTable.commit(Unknown Source)

at org.apache.ojb.odmg.TransactionImpl.doCommitOnObjects(Unknown Source)

at org.apache.ojb.odmg.TransactionImpl.prepare(Unknown Source)

at org.apache.ojb.odmg.TransactionImpl.commit(Unknown Source)


----- Original Message ----- From: "Armin Waibel" <[EMAIL PROTECTED]>
To: "OJB Users List" <[EMAIL PROTECTED]>
Sent: Wednesday, November 26, 2003 6:24 PM
Subject: Re: Identity




doh! Seems I'm tired or dumb ;-)
I mean autoincrement="true"
Or did you implement your owm sequence manager?

abashed,
Armin

Armin Waibel wrote:


Hi,

assume you are using SequenceManagerNativeImpl?
Please set primarykey="true"
Which OJB version?

regards
Armin

R�mi Bars wrote:


Hi all,

i m trying to use identity on sybase with the odmg api. I don t
understand
why only one object is insert in my table, when i try to add a second
object
i get no error but no record too.

have u an idea?

thanks for ur help!

here is my repository

<class-descriptor class='Structure' table='Structure' >
          <field-descriptor
                       name="id"
                       column="id"
                       jdbc-type="numeric"
                       primarykey="true"
                       autoincrement="false"
  access="readonly"
                    />
          <field-descriptor name='_Nom' column='nom'
jdbc-type='VARCHAR'/>
</class-descriptor>

here is my table
CREATE TABLE Structure (

id numeric(4,0) identity not null,

nom VARCHAR(50) NULL )


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]






--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]






--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]





--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]






--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to