Re: [JBoss-user] How to INSERT after ebjPostCreate versus ejbCreate

2002-12-31 Thread Jonathan . O'Connor
, then it should be OK. Ciao, Jonathan Dain Sundstrom <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 30.12.2002 17:26 Please respond to jboss-user To: [EMAIL PROTECTED] cc: Subject: Re: [JBoss-user] How to INSERT after ebjPostCreate versus ejbCreate

Re: [JBoss-user] How to INSERT after ebjPostCreate versus ejbCreate

2002-12-30 Thread Dain Sundstrom
wrote: nice, thanks Jonathan. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jonathan.O'[EMAIL PROTECTED] Sent: Monday, December 30, 2002 6:10 AM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] How to INSERT after ebjPostCreate versus ejbCreate Rod, I

RE: [JBoss-user] How to INSERT after ebjPostCreate versus ejbCreate

2002-12-30 Thread Bill Burke
nice, thanks Jonathan. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of > Jonathan.O'[EMAIL PROTECTED] > Sent: Monday, December 30, 2002 6:10 AM > To: [EMAIL PROTECTED] > Subject: Re: [JBoss-user] How to INSERT after ebjPos

Re: [JBoss-user] How to INSERT after ebjPostCreate versus ejbCreate

2002-12-30 Thread Jonathan . O'Connor
Rod, If you are using Oracle as your DB, then you can mark your CMR fk columns as DEFERRABLE INITIALLY DEFERRED. Oracle will only check the non-null constraints at commit time. Shouldn't be a problem for you. Other DBs may have something similar. Ciao, Jonathan "Rod Macpherson" <[EMAIL PROT

Re: [JBoss-user] How to INSERT after ebjPostCreate versus ejbCreate

2002-12-22 Thread Alex Loubyansky
Hello Rod, pity, but non-null foreign keys aren't supported currently. alex Saturday, December 21, 2002, 9:53:42 PM, you wrote: RM> Calling an entity bean CMR setter method within ejbCreate is prohibited. The RM> general solution is to make CMP calls within ejbCreate and CMR calls in RM> ejbPos