Using CFScript statements



CFScript includes the following types of statements:

  • Assignment statements and functions

  • Conditional processing statements

  • Looping statements

Using assignment statements and functions

CFScript assignment statements are the equivalent of the cfset tag. These statements have the following form:

lval = expression;

eval is any ColdFusion variable reference; for example:

x = "positive"; 
y = x;  
a[3]=5;  
structure.member=10; 
ArrayCopy=myArray;

You can use ColdFusion function calls, including UDFs, directly in CFScript. For example, the following line is a valid CFScript statement:

StructInsert(employee,"lastname",FORM.lastname);

Using conditional processing statements

CFScript includes the following conditional processing statements:

Using if and else statements

The if and else statements have the following syntax:

if(expr) statement [else statement]

In its simplest form, an if statement looks as follows:

if(value EQ 2700) 
    message = "You've reached the maximum";

A simple if-else statement looks like the following:

if(score GT 1) 
    result = "positive"; 
else 
    result = "negative";

CFScript does not include an elseif statement. However, you can use an if statement immediately after an else statement to create the equivalent of a cfelseif tag, as the following example shows:

if(score GT 1) 
    result = "positive"; 
else if(score EQ 0) 
    result = "zero"; 
else 
    result = "negative";

As with all conditional processing statements, you can use curly brackets to enclose multiple statements for each condition, as follows:

if(score GT 1) { 
    result = "positive"; 
    message = "The result was positive."; 
    } 
else { 
    result = "negative"; 
    message = "The result was negative."; 
    }
Note: Often, you can make your code clearer by using braces even where they are not required.

Using switch and case statements

The switch statement and its dependent case and default statements have the following syntax:

switch (expression) { 
        case constant: [case constant:]... statement(s) break;  
        [case constant: [case constant:]... statement(s) break;]...  
        [default: statement(s)] }

Use the following rules and recommendations for switch statements:

  • You cannot mix Boolean and numeric constant values in a switch statement.

  • Each constant value must be a constant (that is, not a variable, a function, or other expression).

  • Multiple caseconstant: statements can precede the statement or statements to execute if any of the cases are true. This lets you specify several matches for one code block.

  • No two constant values can be the same.

  • The statements following the colon in a case statement block do not have to be in curly brackets. If a constant value equals the switch expression, ColdFusion executes all statements through the break statement.

  • The break statement at the end of the case statement tells ColdFusion to exit the switch statement. ColdFusion does not generate an error message if you omit a break statement. However, if you omit it, ColdFusion executes all the statements in the following case statement, even if that case is false. In nearly all circumstances, this is not what you want to do.

  • You can have only one default statement in a switch statement block. ColdFusion executes the statements in the default block if none of the case statement constants equals the expression value.

  • The default statement does not have to follow all switch statements, but it is good programming practice to do so. If any switch statements follow the default statement you must end the default block code with a break statement.

  • The default statement is not required. However, use one if the case constants do not include all possible values of the expression.

  • The default statement does not have to follow all the case statements; however, it is good programming practice to place it there.

The following switch statement takes the value of a name variable:

  1. If the name is John or Robert, it sets both the male variable and the found variable to True.

  2. If the name is Mary, it sets the male variable to False and the found variable to True.

  3. Otherwise, it sets the found variable to False.

switch(name) { 
    case "John": case "Robert": 
        male=True; 
        found=True; 
        break; 
    case "Mary": 
        male=False; 
        found=True; 
        break; 
    default: 
        found=False; 
} //end switch

Using looping statements

CFScript provides a richer selection of looping constructs than those supplied by CFML tags. It enables you to create efficient looping constructs like those in most programming and scripting languages. CFScript provides the following looping constructs:

  • For

  • While

  • Do-while

  • For-in

CFScript also includes the continue and break statements that control loop processing.

Using for loops

The for loop has the following format:

for (initial-expression; test-expression; final-expression) statement

The initial-expression and final-expression can be one of the following:

  • A single assignment expression; for example, x=5 or loop=loop+1

  • Any ColdFusion expression; for example, SetVariable("a",a+1)

  • Empty

The test-expression can be one of the following:

  • Any ColdFusion expression; for example:

    A LT 5 
    index LE x 
    status EQ "not found" AND index LT end
  • Empty

Note: The test expression is re-evaluated before each repeat of the loop. If code inside the loop changes any part of the test expression, it can affect the number of iterations in the loop.

The statement can be a single semicolon terminated statement or a statement block in curly brackets.

When ColdFusion executes a for loop, it does the following:

  1. Evaluates the initial expression.

  2. Evaluates the test-expression.

  3. If the test-expression is False, exits the loop and processing continues following the statement.

    If the test-expression is True:

    1. Executes the statement (or statement block).

    2. Evaluates the final-expression.

    3. Returns to Step 2.

For loops are most commonly used for processing in which an index variable is incremented each time through the loop, but it is not limited to this use.

The following simple for loop sets each element in a 10-element array with its index number.

for(index=1; 
    index LTE 10; 
    index = index + 1) 
    a[index]=index;

The following, more complex, example demonstrates two features:

  • The use of curly brackets to group multiple statements into a single block.

  • An empty condition statement. All loop control logic is in the statement block.

<cfscript> 
strings=ArrayNew(1); 
ArraySet(strings, 1, 10, "lock"); 
strings[5]="key"; 
indx=0; 
for( ; ; ) { 
    indx=indx+1; 
    if(Find("key",strings[indx],1)) { 
        WriteOutput("Found key at " & indx & ".<br>"); 
        break; 
        } 
    else if (indx IS ArrayLen(strings)) { 
        WriteOutput("Exited at " & indx & ".<br>"); 
        break; 
        } 
} 
</cfscript>

This example shows one important issue that you must remember when creating loops: always ensure that the loop ends. If this example lacked the elseif statement, and there was no “key” in the array, ColdFusion would loop forever or until a system error occurred; you would have to stop the server to end the loop.

The example also shows two issues with index arithmetic: in this form of loop you must make sure to initialize the index, and keep track of where the index is incremented. In this case, because the index is incremented at the top of the loop, initialize it to 0 so it becomes 1 in the first loop.

Using while loops

The while loop has the following format:

while (expression) statement

The while statement does the following:

  1. Evaluates the expression.

  2. If the expression is True, it does the following:

    1. Executes the statement, which can be a single semicolon-terminated statement or a statement block in curly brackets.

    2. Returns to step 1.

    If the expression is False, processing continues with the next statement.

    The following example uses a while loop to populate a 10-element array with multiples of five.

    a = ArrayNew(1); 
    loop = 1; 
    while (loop LE 10) { 
        a[loop] = loop * 5; 
        loop = loop + 1; 
        }

As with other loops, make sure that at some point the whileexpression is False and be careful to check your index arithmetic.

Using do-while loops

The do-while loop is like a while loop, except that it tests the loop condition after executing the loop statement block. The do-while loop has the following format:

do statement while (expression);

The dowhile statement does the following:

  1. Executes the statement, which can be a single semicolon-terminated statement or a statement block in curly brackets.

  2. Evaluates the expression.

  3. If the expression is true, it returns to step 1.

If the expression is False, processing continues with the next statement.

The following example, like the while loop example, populates a 10-element array with multiples of 5:

a = ArrayNew(1); 
loop = 1; 
do { 
a[loop] = loop * 5; 
loop = loop + 1; 
} 
while (loop LE 10);

Because the loop index increment follows the array value assignment, the example initializes the loop variable to 1 and tests to make sure that it is less than or equal to 10.

The following example generates the same results as the previous two examples, but it increments the index before assigning the array value. As a result, it initializes the index to 0, and the end condition tests that the index is less than 10.

a = ArrayNew(1); 
loop = 0; 
do { 
    loop = loop + 1;  
    a[loop] = loop * 5; 
}  
while (loop LT 10);

The following example loops through a query:

<cfquery ... name="myQuery"> 
... sql goes here... 
</cfquery> 
<cfscript> 
if (myQuery.RecordCount gt 0) { 
     currRow=1; 
     do { 
       theValue=myQuery.myField[CurrRow]; 
       currRow=currRow+1; 
     } while (currRow LTE myQuery.RecordCount); 
} 
</cfscript> 

Using for-in loops

The for-in loop loops over the elements in a ColdFusion structure. It has the following format:

for (variable in structure) statement

The variable can be any ColdFusion identifier; it holds each structure key name as ColdFusion loops through the structure. The structure must be the name of an existing ColdFusion structure. The statement can be a single semicolon terminated statement or a statement block in reference.

The following example creates a structure with three elements. It then loops through the structure and displays the name and value of each key. Although the curly brackets are not required here, they make it easier to determine the contents of the relatively long WriteOutput function. In general, you can make structured control flow, especially loops, clearer by using curly brackets.

myStruct=StructNew(); 
myStruct.productName="kumquat"; 
mystruct.quality="fine"; 
myStruct.quantity=25; 
for (keyName in myStruct) { 
    WriteOutput("myStruct." & Keyname & " has the value: " & 
            myStruct[keyName] &"<br>"); 
}
Note: Unlike the cfloop tag, CFScript for-in loops do not provide built-in support for looping over queries and lists.

Using continue and break statements

The continue and break statements enable you to control the processing inside loops:

  • The continue statement tells ColdFusion to skip to the beginning of the next loop iteration.

  • The break statement exits the current loop or case statement.

Using continue

The continue statement ends the current loop iteration, skips any code following it in the loop, and jumps to the beginning of the next loop iteration. For example, the following code loops through an array and display’s each value that is not an empty string:

for ( loop=1; loop LE 10; loop = loop+1) { 
    if(a[loop] EQ "") continue; 
    WriteOutput(loop); 
}

(To test this code snippet, you must first create an array, a, with 10 or more elements, some of which are not empty strings.)

The continue statement is useful if you loop over arrays or structures and you want to skip processing for array elements or structure members with specific values, such as the empty string.

Using break

The break statement exits the current loop or case statement. Processing continues at the next CFScript statement. You end case statement processing blocks with a break statement. You can also use a test case with a break statement to prevent infinite loops, as shown in the following example. This script loops through an array and prints the array indexes that contain the value key. It uses a conditional test and a break statement to make sure that the loop ends when at the end of the array.

strings=ArrayNew(1); 
ArraySet(strings, 1, 10, "lock"); 
strings[5]="key"; 
strings[9]="key"; 
indx=0; 
for( ; ; ) { 
    indx=indx+1; 
    if(Find("key",strings[indx],1)) { 
        WriteOutput("Found a key at " & indx & ".<br>"); 
        } 
    else if (indx IS ArrayLen(strings)) { 
        WriteOutput("Array ends at index " & indx & ".<br>"); 
        break; 
    } 
}