Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<Cfset gotrue=1>
<cftransaction>
<cftry>...queries here...
<cfcatch>...catch the error...
<cfset gotrue=0>
<cftransaction action="rollback">
<cfrethrow> <!---This line throws the error back to your error handler if you have one.. If you don't, you can remove this...--->
</cfcatch>
</cftry>
<cfif gotrue eq 1>
...do something...
<cftransaction action="commit">
</cfif>
</cftransaction>