RE: Isolating DB CRUD in CFC objects

2006-02-11 Thread Andy
Fantastic. Thanks. -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Saturday, February 11, 2006 12:41 PM To: CF-Talk Subject: Re: Isolating DB CRUD in CFC objects If they are in one CFTRANSACTION tag pair, they should be rolled back together (in versions 6.1 and

Re: Isolating DB CRUD in CFC objects

2006-02-11 Thread James Holmes
If they are in one CFTRANSACTION tag pair, they should be rolled back together (in versions 6.1 and above, anyway). >From the fixed issues list: 49705 - cfquery tags used in CFCs did not participate in cftransaction operations of the code that called them. http://www.macromedia.com/support/coldf

Isolating DB CRUD in CFC objects

2006-02-11 Thread Andy
I am considering isolating all of my database CRUD in CFC objects. From previous posts, I understand that if I put two calls to an Update method inside of a , I failure of the second transaction will not reverse the first transaction. Is this correct? If so, it seems that I need to have the CRUD