Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

cftransactions nested in cfinvoke

Status
Not open for further replies.

cash0

Programmer
May 23, 2001
22
0
0
AU
Hi, the situation is:

I've got a block of code that uses a cftransaction - and inside the cftransaction tags, I have a cfinvoke. The function I call with the cfinvoke also uses cftransaction tags - so techically I have nested the cftransactions - but they are in two different functions. So put simply, something like this:

<cffunction name=&quot;myFunction1&quot;>
<cftransaction>
<cfinvoke method=&quot;myFunction2&quot;>
do some other stuff here
</cftransaction>
</cffunction>

<cffunction name=&quot;myFunction2&quot;>
<cftransaction>
do some stuff here
</cftransaction>
</cffunction>

The question is: Is this bad?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top