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 »
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 »
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,516 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,516 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 »
11 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,516 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 »
11 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,516 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.


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
Nov 20, 2009 at 11:32 PM
Five Months Without Hungarian Notation And I'm Loving It
I've used headless camel case for years for not only ColdFusion variables, but also SQL tables and fields... pretty much everything involving code. I also subscribe to the "don't abbreviate and clea ... read »
Nov 20, 2009 at 11:00 PM
Five Months Without Hungarian Notation And I'm Loving It
@Marcel, Yeah, I always err on the side of longer but more readable variable names. As for the camel casing of CF methods and the headless camel casing of custom items, I get around this by always ... read »
Nov 20, 2009 at 10:56 PM
Five Months Without Hungarian Notation And I'm Loving It
I use the following and love it: my.namespace.MyComponents.functionMethodsOrUDF() CONSTANT_VALUES_OR_PROPERTIES One thing I always try is to CamelCaseBuiltInColdFusionFunctions() so others can tell ... read »
Nov 20, 2009 at 5:38 PM
Learning ColdFusion 8: CFImage Part I - Reading And Writing Images
Hi Ben, Great article. I've been looking around to see if ColdFusion image engine can programatically create the following "wrap around" effect: http://www.creativepro.com/article/photoshop-s-she ... read »
Nov 20, 2009 at 5:35 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Dave: I talked to Gert he suggested: <cfhttp method="get" url="http://{some cf website}" result="stuff" addtoken="yes" /> Note the addition of cfhttp attribute addtoken. That should persist y ... read »
Nov 20, 2009 at 5:23 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Todd, Ahh, gotcha, yeah that makes sense. ... read »
Nov 20, 2009 at 5:17 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
Ben, sorry if I didn't make this clear. You can make it work like that if you want, just put <cfset session.foo = 1> (and <cfset application.foo = 1>) in your OnRequestStart() and it reve ... read »