gerd
11/2/2016 - 2:29 PM

CFtransaction in script From http://www.petefreitag.com/cheatsheets/coldfusion/cfscript/

transaction {
	//do stuff
	if (good) {
		transaction action="commit";
	else {
		transaction action="rollback";
	}
}