CFSCRIPT Snippets and Hints
Some useful cfscript snippets and syntax. Many of these originated from Pete Freitag's CFSCRIPT Cheat Sheet: https://www.petefreitag.com/cheatsheets/coldfusion/cfscript/
Transaction Integrity Protection
transaction {
//do stuff
if (good) {
transaction action="commit";
} else {
transaction action="rollback";
}
}Loops
Simple Loop
for (i=1;i LTE ArrayLen(array);i=i+1) {
WriteOutput(array[i]);
}While Loop
Do / While Loop
For / In Loop
If / Then / Else
Switch Statement
Comments
Try / Catch / Throw
Last updated