RE: [CFCDev] Nested cftransaction error in CFMX 6.1

2004-06-17 Thread Brent Nicholas
First off hello everyone, I'm new here. As to your question I don't know I've not nested them before. You could however read this it may help. http://www.macromedia.com/devnet/mx/coldfusion/articles/cftransaction.html Thanks, BN Brent Nicholas - EclecticDetroit, LLC.

Re: [CFCDev] Nested cftransaction error in CFMX 6.1

2004-06-17 Thread Kevin Long
Tim, From my understanding, it was a bug in 6.0 that allowed there to be nested transactions. Really the only actions that belong insinde a transaction is a commit or a rollback. Having said that, I had this problem with some code I was working with that might include code that was inside a

RE: [CFCDev] Nested cftransaction error in CFMX 6.1

2004-06-17 Thread Paul Kenney
and redesign your queries. Paul Kenney [EMAIL PROTECTED] 916-212-4359 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Kevin Long Sent: Thursday, June 17, 2004 7:24 AM To: [EMAIL PROTECTED] Subject: Re: [CFCDev] Nested cftransaction error in CFMX 6.1 Tim

RE: [CFCDev] Nested cftransaction error in CFMX 6.1

2004-06-17 Thread online
yup, i got that error. in my case, if the sub transaction failed then i wanted the outer one too. so heres what i did: cfset docmitt = true cftransaction action="" cftry !--- outer level queries go here --- !--- function with subtransaction returns true or false --- cfif not

Re: [CFCDev] Nested cftransaction error in CFMX 6.1

2004-06-17 Thread Sean A Corfield
On Jun 17, 2004, at 7:01 AM, Timothy Ford wrote: Anyone ever get this error with nested transactions in 6.1? Yes, CFMX 6.1 now correctly detects attempts to create nested transactions and disallows them. They worked in 6.0. Anyone know of a resolution? They didn't work but the condition was not

RE: [CFCDev] Nested cftransaction error in CFMX 6.1

2004-06-17 Thread Timothy Ford
Ok, thanks for all your help guys. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Sean A Corfield Sent: Thursday, June 17, 2004 11:21 AM To: [EMAIL PROTECTED] Subject: Re: [CFCDev] Nested cftransaction error in CFMX 6.1 On Jun 17, 2004, at 7:01 AM