RE: Re[2]: [JBoss-user] CMP - Primary Key Strategies?

2003-03-19 Thread Rod Macpherson
] Subject: Re: Re[2]: [JBoss-user] CMP - Primary Key Strategies? Note that Oracle sequences can't be rollbacked! If you encounter any Exception (NullPointer...), there'll be a hole. Cheers, WS --- costin <[EMAIL PROTECTED]> a écrit : > Hi! > > So basically you can use

Re: Re[2]: [JBoss-user] CMP - Primary Key Strategies?

2003-03-19 Thread Brijesh Sood
yea right - Original Message - From: "costin" <[EMAIL PROTECTED]> To: "Brijesh Sood" <[EMAIL PROTECTED]> Sent: Wednesday, March 19, 2003 4:06 PM Subject: Re[2]: [JBoss-user] CMP - Primary Key Strategies? > Hi! > > So basically you can use the au

Re: Re[2]: [JBoss-user] CMP - Primary Key Strategies?

2003-03-19 Thread wonder sonic
Note that Oracle sequences can't be rollbacked! If you encounter any Exception (NullPointer...), there'll be a hole. Cheers, WS --- costin <[EMAIL PROTECTED]> a écrit : > Hi! > > So basically you can use the autoincrement feature > with: > > - not doing anything in ejbCreate > > (the rest is

Re[2]: [JBoss-user] CMP - Primary Key Strategies?

2003-03-19 Thread costin
Hi! So basically you can use the autoincrement feature with: - not doing anything in ejbCreate (the rest is standard - get/set methods/descriptor/etc...)? Is this correct? BS> Hi Eric BS> Well this is good to used db based sequence number as the primary key . I m currently using