| LIST | Required. The list that you want to qualify. For instance, LIST="Red,White,Blue" or LIST="#MyList#" |
| VARIABLE | Optional. A valid variable name to put the finished information into. Defaults to ListQualified. So after CF_ListQualify runs, the qualified version of LIST will be available as #ListQualified# for your use, unless you specify a different VARIABLE name here. |
| QUALIFIER | Optional. The character to put around each element in LIST.
Defaults to the single quote character ('), so Red,White,Blue would
become 'Red','White','Blue' unless you specify a different QUALIFIER here.
QUALIFIER is also stripped from each element of the original list to avoid problems. So Red's,White's,Blue's would become 'Red','White','Blue'. |
| DELIMITER | Optional. Defaults to a comma (,). Just as with the CF built-in list functions, LIST can be delimited by a character other than the comma. So if LIST was Red|White|Blue you would probably want to use DELIMITER="|" to use this tag. |
| SKIPVALUE | Optional. Defaults to none. If this value is encountered in the list, it will not be qualified. So if you specified SKIPVALUE="null", then Red,null,Blue would become 'Red',null,'Blue'. |
Example
SELECT * FROM MyTable
WHERE MyColumn IN ('Red','White','Blue')