I wanted to know can my cfml page or cfc components with with only cfscript tag?

Can we use it everywhere? Is there any limitation in its usage?

Edit:

I am curious because I read the following line

In addition to variable setting, other operations tend to be slightly faster in CFScript than in tags.

Read it here

link|improve this question

80% accept rate
feedback

2 Answers

up vote 9 down vote accepted

Most tags are now implemented as CFScript-ready implementations, but not all of them. Contrary to what the previous poster said, CFMAIL is one of the ones that has already been done: http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSe9cbe5cf462523a0693d5dae123bcd28f6d-7ff9.html

As far as the other script coverage goes, it's in the docs: http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cbec22c24-7feb.html

Note, one can definitely write CFCs entirely in script now: http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSE99A664D-44E3-44d1-92A0-5FDF8D82B55C.html

But I would be cautious about doing this because not all tags are implemented in script yet, and if you suddenly find you need too use one of them in your script-only CFC... you're a bit stuck.

Also I think some constructs like CFQUERY are a more elegant solution than Query.cfc's approach.

As for the comment that CFScript is faster than tag-based code, that hasn't really been the case since the compiler changes in CFMX7.0. Mostly the code compiles down to pretty much the same thing now. Some operations are faster in CFScript, some are faster in tag-based code. That said, these performance gains are going to be minimal compared to tuning your actual code or DB access or memory handling: I'd not refactor tag-based code to script-based code to try to find performance gains.

link|improve this answer
Similar info for Railo wiki.getrailo.org/wiki/3-2:CFSCRIPT – Sergii Aug 18 '11 at 12:12
For tags that haven't been scriptified (or you're working in an older version of CF) a lot of them have been converted to UDFs. Have a look at cflib.org. – Al Everett Aug 18 '11 at 12:28
Indeed cfmail exists, however for tags not implemented my approach is a way to work around the issue. Edited my question. – jontro Aug 18 '11 at 13:25
Sorry mate, what I meant is the cfscript version of CFMAIL exists. As per the link, there's a Mail.cfc which implements CFMAIL's functionality. Sorry for the confusion. – Adam Cameron Aug 18 '11 at 13:28
feedback

In coldfusion 8 and below tags like cfmail are not avaiable in cfscript. You can however call them by wrapping it in a cffunction like this:

<cffunction name="myCfEmail">
    <cfmail ...></cfmail>
</cffunction>

<cfscript>
    myCfEmail();
</cfscript>

In coldfusion 9 you can actually do this for some tags. See http://www.bennadel.com/blog/1663-Learning-ColdFusion-9-CFScript-Updates-For-Tag-Operators.htm on how to do this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.