ColdFusion Error... But No Error Found

Posted July 12, 2006 at 6:29 PM

Tags: ColdFusion

I just spent an hour working with Simon to debug a page code template. The reason it took so long was not due to the complexity of the page itself, but rather because no error was showing up. More than that, nothing was showing up on the screen or in the page source at all. CFError (the global site error handler) wasn't catching anything. The CFTry / CFCatch blocks weren't catching anything. It was like the page wasn't even being run!

After commenting much of the code out and then uncommenting, we narrowed the error down to one CFQuery tag. We still didn't know what the error was, but at least we knew where it was happening (without this CFQuery tag, the page ran fine). This is what the query looked like (I built a query here on the fly to demonstrate the use of names, but the INSERT was similar):

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

  • <!--- Create a test query. --->
  • <cfset qGirls = QueryNew( "name" ) />
  •  
  • <!--- Add rows to the query. --->
  • <cfset QueryAddRow( qGirls ) />
  • <cfset qGirls[ "name" ][ qGirls.CurrentRow ] = "Sara Vivenzio" />
  •  
  • <cfset QueryAddRow( qGirls ) />
  • <cfset qGirls[ "name" ][ qGirls.CurrentRow ] = "Madonna" />
  •  
  • <cfset QueryAddRow( qGirls ) />
  • <cfset qGirls[ "name" ][ qGirls.CurrentRow ] = "Ashley Thomas" />
  •  
  • <!--- Output loop over the records. --->
  • <cfoutput query="qGirls">
  •  
  • <!--- Insert each girl's last name. --->
  • <cfquery name="qInsert" datasource="#REQUEST.DSN.Source#" username="#REQUEST.DSN.Username#" password="#REQUEST.DSN.Password#">
  • INSERT INTO testing
  • (
  • name
  • ) VALUES (
  • <cfqueryparam
  • value="#ListGetAt( qGirls.name, 2, ' ' )#"
  • cfsqltype="CF_SQL_VARCHAR"
  • />
  • );
  • </cfquery>
  •  
  • </cfoutput>

Did you spot the error? The line:

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

  • <cfqueryparam
  • value="#ListGetAt( qGirls.name, 2, ' ' )#"
  • cfsqltype="CF_SQL_VARCHAR"
  • />

... will fail on the second row of the query. There is no " " character delimiting the first and last name as there is only one name (and only one Madonna). The weird thing was, no error was being thrown. The page simply crapped out and didn't give us any information at all. I don't have access to it at the moment, but I am interested in what the server logs tell us; maybe they recorded something.

Now, please note, I CANNOT reproduce this error in my code. I am working on a different server. This makes me think that his server might not have all the ColdFusion updates? I don't know. But, if your queries every crap out and leave you no hints, try hard-coding values for all your CFQueryParam tags. I should have done that right off the bat, but it never occurred to me that no error would be produced.

Download Code Snippet ZIP File

Post Comment  |  Ask Ben  |  Permalink  |  Print Page




Reader Comments

There are no comments posted for this web log entry.


Post Comment  |  Ask Ben

Recent Blog Comments
Nov 21, 2009 at 4:49 PM
Styling The ColdFusion 8 WriteToBrowser CFImage Output
Great work yet again Ben! Whilst I didn't use this whole code, I copied some of your regex code for a similar problem with the lack of an alt attribute and unescaped ampersands in CFIMAGE for Railo 3 ... read »
Nov 21, 2009 at 1:13 PM
My First ColdFusion Builder Extension - Encrypting And Decrypting CFM / CFC Files
@Ben, Because I am pedantic, I just want to make sure that everyone knows there is absolutely no encryption going on. There is only encoding and obfuscation. The cfencode tool only obfuscates your C ... read »
Nov 21, 2009 at 12:28 PM
Using ColdFusion Structures To Remove Duplicate List Values
@Jody I can't seem to get your code sample to work. If you are still having problems, try this code out and see if it gets you what you wanted. <!--- Comma delimited list with various duplicates ... read »
Nov 21, 2009 at 11:03 AM
Groovy Operator Overloading Does Not Work In The ColdFusion Context
Hi Ben, Thanks for this informative post. Now I am reading ur old posts too ... read »
Nov 21, 2009 at 10:56 AM
HostMySite.com Has The Best ColdFusion Hosting
@Mehul, Yes very nice people, however several downtimes per day which was not acceptable. Hence we had to move out. I am glad you are having good luck with them so far. ... read »
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 »