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  |  Print Page




Reader Comments

Jun 17, 2009 at 9:23 AM // reply »
55 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 »
4 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 »
7,486 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 »
7,486 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 »
14 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 »
7,486 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 »
14 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 »
7,486 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 »
44 Comments

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


Jun 18, 2009 at 1:46 PM // reply »
111 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
Mar 11, 2010 at 3:24 PM
Ask Ben: Using jQuery To Act On A Click Event Based On The Target Element
@TripeL, Awesome :) Glad it was helpful. ... read »
Mar 11, 2010 at 3:23 PM
Ask Ben: Using jQuery To Act On A Click Event Based On The Target Element
WOW...that's what I'm looking for. The code examples are very helpful. Thanks ... read »
Mar 11, 2010 at 1:20 PM
What Is The Best Time Of Day To Workout?
Well I am glad I stick to mid afternoon / evening work outs. Interesting find! ... read »
Mar 11, 2010 at 1:13 PM
CFHTTPSession.cfc For Multi-CFHttp Requests With Maintained Session
It worked for what I needed perfectly the first try... this is huge, you have made my week! ... read »
Mar 11, 2010 at 12:54 PM
Using Appropriate Status Codes With Each API Response
I forgot to mention that using this application stack allows me to separate as much of the core/business logic into the API Library which leaves the web applications just to handle presentation layer ... read »
Mar 11, 2010 at 12:47 PM
Using Appropriate Status Codes With Each API Response
@Ben Yep, we look a lot at the available http status codes to try and find the best match to what the error is. Between the status code, headers, and/or sending back what the error was via json or x ... read »
Mar 11, 2010 at 12:40 PM
Creating An Image Zoom And Clip Effect With jQuery And ColdFusion
@Ben Nadel, Hi, thanks for answering that fast, i did a little debug... Image data: ----------- Dibujo_uno_small.jpg : 474px × 570px 72dpi Dibujo_uno_big.jpg : 1947px × 2337px 72dpi Code source ... read »
Mar 11, 2010 at 12:13 PM
URL Rewriting And ColdFusion's WriteToBrowser Image Functionality (CFFileServlet)
@Ben We, finally, have been able to convert all URL and FORM variables inside the framework itself (via getHttpRequestData()). The hardest part was parsing the bytearray sent when a file is uploaded ... read »