RE: [JBoss-user] Stored procedures and session beans

2003-08-14 Thread Peter Spiess
exception when you tried to commit Peter > -Original Message- > From: Russ Chan [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 14, 2003 11:08 AM > To: [EMAIL PROTECTED] > Subject: Re: [JBoss-user] Stored procedures and session beans > > > Thanks for the

Re: [JBoss-user] Stored procedures and session beans

2003-08-14 Thread Nicholas
Provided that the stored proc does not have any commits or rollbacks in it, I think you are in the clear. CMT will make the call part of the transaction. Make sure you get your connection from a transacted pool. //Nicholas --- Russell Chan <[EMAIL PROTECTED]> wrote: > Hi, > > I've looked throug

Re: [JBoss-user] Stored procedures and session beans

2003-08-14 Thread Russ Chan
:08 AM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Stored procedures and session beans Thanks for the reply Nicholas. I'm not sure that the connection is part of the transacted pool - The connection is retrieved from an env-entry for the bean, which is the datasource from jboss. I think that

Re: [JBoss-user] Stored procedures and session beans

2003-08-14 Thread Russ Chan
Thanks for the reply Nicholas. I'm not sure that the connection is part of the transacted pool - The connection is retrieved from an env-entry for the bean, which is the datasource from jboss. I think that you're right and I'm doing it the right way, but I just want someone else to confirm :-).