ColdFusion Tag Parameters Can Be Included In Separate Files (Thanks Mark Drew!)

Posted June 17, 2009 at 9:06 AM

Tags: ColdFusion

At the New York ColdFusion User Group a few weeks ago, Mark Drew was presenting on Reactor, an ORM framework. In his presentation, he was discussing how the SQL was generated and he had something on a slide that I don't think I had ever seen before. He had a CFQuery tag in which the SQL was defined in an included file (via CFInclude). Now, I've seen that done before (separate SQL); but, what I had not seen before that I can remember is that the included SQL file contained actual CFQueryParam tags.

From what I could remember, things like this were not possible. So, I figured it was time to run some experiments. I took three ColdFusion tags that usually have some sort of child parameter tag and tried moving them to separate include files. I did this with CFQuery (to replicate Mark's idea), CFMail, and CFHTTP.

To start with, I wanted to replicate Mark's demonstration using CFQuery and included CFQueryParam tags:

 Launch code in new window » Download code as text file »

  • <!--- Create a query to test with. --->
  • <cfset dataTable = queryNew( "id", "cf_sql_integer" ) />
  •  
  • <!---
  • Run query against data table, but build query in
  • secondary file.
  • --->
  • <cfquery name="records" dbtype="query">
  • <cfinclude template="cfquery_params.cfm" />
  • </cfquery>
  •  
  • <!--- Output query data. --->
  • <cfdump
  • var="#records#"
  • label="Query Data"
  • />

... and here is the include file:

 Launch code in new window » Download code as text file »

  • SELECT
  • id
  • FROM
  • dataTable
  • WHERE
  • id = <cfqueryparam value="1" cfsqltype="cf_sql_integer" />

The above code runs with no ColdFusion errors.

Then, I tried using the CFMail tag:

 Launch code in new window » Download code as text file »

  • <!--- Send email, but define body elements in included files. --->
  • <cfmail
  • to="ben@bennadel.com"
  • from="blog@bennadel.com"
  • subject="Child Params Test"
  • type="html">
  •  
  • <cfinclude template="cfmail_params.cfm" />
  • </cfmail>

... and here is the include file:

 Launch code in new window » Download code as text file »

  • <!--- HTML mail data. --->
  • <cfmailpart type="text/html">
  • <strong>HTML data.</strong>
  • </cfmailpart>
  •  
  • <!--- Text-only mail data. --->
  • <cfmailpart type="text/plain">
  • Text-only data.
  • </cfmailpart>
  •  
  • <!--- Include a file. --->
  • <cfmailparam
  • file="#ExpandPath( './cfmail_params.cfm' )#"
  • type="text/plain"
  • />

The above code runs with no ColdFusion errors.

Then, I tried using the CFHTTP tag:

 Launch code in new window » Download code as text file »

  • <!--- Make HTTP request, but include params in separate file. --->
  • <cfhttp
  • result="httpResponse"
  • method="get"
  • url="http://www.google.com/search"
  • useragent="firefox">
  •  
  • <cfinclude template="cfhttp_params.cfm" />
  • </cfhttp>
  •  
  • <!--- Output http response. --->
  • <cfoutput>
  • #httpResponse.fileContent#
  • </cfoutput>

... and here is the include file:

 Launch code in new window » Download code as text file »

  • <cfhttpparam
  • type="url"
  • name="q"
  • value="hot sexy female muscle"
  • />

This also executed without any ColdFusion errors.

So, that's pretty cool. I am not sure how often it would make sense to use this kind of strategy; but, I was a bit surprised that it worked. I always thought that these child ColdFusion tags needed to be defined in the direct context of their parent tags, but I guess I was totally wrong. Thanks Mark!

Download Code Snippet ZIP File

Post Comment  |  Ask Ben  |  Permalink  |  Print Page



Learning ColdFusion 9 - ColdFusion 9 tutorials, samples, examples, demos

Reader Comments

Jun 17, 2009 at 9:23 AM // reply »
49 Comments

Interesting post Ben. I've actually done something very similar to your CFMail example, but not the CFHTTP or CFQuery ones. Hmm.


Jun 17, 2009 at 10:04 AM // reply »
3 Comments

I've used this in the past with <cfquery> -- it's great for keeping a shared "where" clause separate from the main query.

But, does this work with <cfform> ... <cfinput> ... </cfform> too? That limitation used to be there, and it was the main reason I never started using those tags.

Ben


Jun 17, 2009 at 10:09 AM // reply »
6,371 Comments

@Ben,

I've never really gotten into CFForm, so I can't say. But, it would seem like it should follow the same scheme.


Jun 17, 2009 at 10:24 AM // reply »
5 Comments

I've always equated includes (in any language) as Server-Side copy and paste. When I'm teaching people that are having problems understanding how to use includes, I tell them to just pretend that you copy everything from the include and paste it into the parent document. This falls right in line with that way of thinking, though I didn't know that CF would consider it valid :-).


Jun 17, 2009 at 10:26 AM // reply »
6,371 Comments

@Daniel,

Yeah, I thought it would be a compile-time validation issue. I'll have to do some more playing around.


Jun 17, 2009 at 10:44 AM // reply »
1 Comments

Very interesting. Not sure if there's a chance that I will use it - but very interesting.

Ben, I always find good cf tips on your site.


Jun 17, 2009 at 11:15 AM // reply »
10 Comments

Definitely an interesting technique, but I've been mulling it over for the past several minutes and I can't come up with a situation where you would want to do something like this. Can you see a use for this, Ben?


Jun 17, 2009 at 11:19 AM // reply »
6,371 Comments

@Pat,

Thanks my man :)

@Brian,

The SQL is the only one that really makes much sense to me. I can't really think of another reason to do this... unless you were going to create custom tags that wrapped around the inherent tag functionality... assuming that scenario is even still functional. I'll play around.


Jun 17, 2009 at 11:31 AM // reply »
10 Comments

One possible use that came to mind was building a query testing tool: you'd have a directory of include files with different SQL statements and just loop through them to make sure they worked properly.

The oddness of it just really bothers me for some reason. The normal approach is to create a reusable function and then inject different parameters to get different results, whereas this lets you create reusable parameters to inject into different functions...bit of a mind-bender.


Jun 17, 2009 at 11:35 AM // reply »
6,371 Comments

@Brian,

Yeah, it's a bit interesting, right?


Jun 17, 2009 at 12:10 PM // reply »
40 Comments

I've also done this with nested custom tags in the ColdExt project, with a bit of trickery looking through the list of parent tags you can safely ignore standard CF tags (including cfinclude) and only pass data back to a parent tag that belongs to your own library (using cfassociate), even when the code is in separate files as you've noted here. The built-in CF tags which are generally used as nested tags must treat cfinclude (and other flow control tags) the same way when passing data back to their parent tags :)


Jun 17, 2009 at 1:00 PM // reply »
9 Comments

Whoah. Weird. It shows how literal cfinclude is.


Jun 17, 2009 at 3:17 PM // reply »
25 Comments

I've always considered cfinclude to do just that, take another template and insert it right here.

One exception though and I haven't tested this in a while, but I think that a cfinclude inside of cfoutputs does not recognize that it is inside those. The included template must have its own cfoutput tags.


Jun 18, 2009 at 11:53 AM // reply »
40 Comments

@Matt, I believe you're right, I think the page is executed separately from what I recall.


Jason Fisher
Jun 18, 2009 at 1:46 PM // reply »
102 Comments

and, yes, this works just fine with CFFORM tags wrapped around something like CFINCLUDE template="_form.cfm" ...


Post Comment  |  Ask Ben

Recent Blog Comments
Jill
Nov 7, 2009 at 7:58 AM
How To Unformat Your Code (Like A Pro)
LMAO - this was pretty funny! I have to admit - I also love to reformat code so I can read it. My boss used to tell me to leave my OCD at home. Now I don't feel so bad after reading everyone else' ... read »
Nov 6, 2009 at 10:10 PM
How To Unformat Your Code (Like A Pro)
The timing of this post is just uncanny. I spent the last 15-20 minutes manually un-formatting my "Ben Nadel" style code within a CFC of mine. I was really digging the readability a few weeks ago, bu ... read »
Roe
Nov 6, 2009 at 5:11 PM
Passing Arrays By Reference In ColdFusion - SWEEET!
ArraySort also reorders the results of these java obj's ... read »
Nov 6, 2009 at 4:53 PM
How To Unformat Your Code (Like A Pro)
I tried to go *back* the other way. Adding formatting is actually a much more complicated problem than removing formatting. Anyway, here is what I could put together with a minimal amount of time: ... read »
Asaf
Nov 6, 2009 at 2:35 PM
ColdFusion GetPageContext() Massive Exploration
Hi, I actually found this post useful. I recently acquired a SSL certificate for my website and when I switched over to HTTPS Internet Explorer would throw an error when trying to download a dynamic ... read »
Nov 6, 2009 at 2:19 PM
How To Unformat Your Code (Like A Pro)
@Chuck, @Nathan, Well, now I feel like it's a challenge.... I accept. ... read »
Nathan Stanford
Nov 6, 2009 at 2:06 PM
How To Unformat Your Code (Like A Pro)
@Chuck, I would love it as well. I was not joking I am very serious I love well formatted code. ... read »
Chuck
Nov 6, 2009 at 1:54 PM
How To Unformat Your Code (Like A Pro)
Ben great job, I happen to like your coding style and find it very easy to understand and follow. @Nathan, I totally agree, I (like the rest of you I assume) am pretty meticulous when it comes to c ... read »