Ask Ben: Updating Columns In An Existing ColdFusion Query Object

Posted September 14, 2009 at 8:17 AM

Tags: ColdFusion, Ask Ben

Hi Ben, I have a question:), Is there a way to update a result set that was generated using QuerySetCell. I have a recordset that gets some null values. After the temporary table has been generated, I want to update the empty strings with 0. Is there a way to update query of queries or tables generated by querySetCell method. Thanks.

I'm really glad you asked me this as it got me thinking deeply about ColdFusion query of queries and some of the limitations that they have. What would be really nice (which I experimented with) is if ColdFusion query of queries supported UPDATE and DELETE SQL statements. However, currently, as they do not, the easiest way to solve your problem is to manually loop over the query and explicitly update the appropriate query cell values. To demonstrate this, let's first build a ColdFusion query object from scratch:

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

  • <!--- Create the query object. --->
  • <cfset girls = queryNew( "" ) />
  •  
  • <!--- Add the name column. --->
  • <cfset queryAddColumn(
  • girls,
  • "name",
  • "cf_sql_varchar",
  • listToArray( "Sarah,Libby,Jill,Kim" )
  • ) />
  •  
  • <!---
  • Add the "is cute" column. When we add this column, let'
  • s not supply any default values. This will put NULL
  • value / empty strings in the cells.
  • --->
  • <cfset queryAddColumn(
  • girls,
  • "is_cute",
  • "cf_sql_integer",
  • arrayNew( 1 )
  • ) />
  •  
  •  
  • <!--- Output the query as it stands now. --->
  • <cfdump
  • var="#girls#"
  • label="Incomplete Girls"
  • />

Notice that we are providing default values for the "name" column, but not for the "is_cute" column. As such, the "is_cute" column will be filled with NULL values (represented on the output as empty strings):

 
 
 
 
 
 
ColdFusion Query Objects Can Have NULL Values When Built Manually. 
 
 
 

Now, we have to loop over the query and update the appropriate cells. While we know at this point that all the "is_cute" values will be NULL, I'm going to include a conditional check just so you can see how you might do this if you knew less about the query:

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

  • <!---
  • Now, we want to set the NULL values to zero as the default
  • value. Because the CFQuery query of queries does not support
  • UPDATE statements, we will have to manually loop over the
  • query to find the rows that need to be updated.
  • --->
  • <cfloop query="girls">
  •  
  • <!---
  • Check to see if this "is cute" column is null.
  • NOTE: We know that they all will be at this point, but I
  • wanted to demonstrate the conditional check.
  • --->
  • <cfif !isNumeric( girls.is_cute )>
  •  
  • <!---
  • Since "is cute" is not numeric, we know that it needs
  • to get our default value. When setting this value, it
  • is IMPORTANT that we use JavaCast() so that the
  • unerlying Java object understands what type of value
  • we are setting. Not doing this can lead to query of
  • query errors later on.
  • --->
  • <cfset girls[ "is_cute" ][ girls.currentRow ] = javaCast(
  • "int",
  • 0
  • ) />
  •  
  • </cfif>
  •  
  • </cfloop>
  •  
  •  
  • <!--- Output the query as it stands now. --->
  • <cfdump
  • var="#girls#"
  • label="Defaulted Girls"
  • />

As we loop over the row, we can use the internal index provided implicitly by the CFLoop tag when checking the "is_cute" value; however, when we go to update the row, we need to reference the row index explicitly; as such, updating requires us to use array notation with both the column name and the row index (which we get using the CurrentRow property). As a general rule, you always want to do your best to provide the most accurate Java type when updating a query cell value so as to prevent any odd query of query results later on.

When we run the above code, we get the following output:

 
 
 
 
 
 
To Update A ColdFusion Query Object, You Can Loop Over It And Set The Cell Values Explicitly. 
 
 
 

As you can see, the "is_cute" column now has its default zeros. I hope that helps.

Download Code Snippet ZIP File

Post Comment  |  Ask Ben  |  Other Searches  |  Print Page




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

Reader Comments

Oct 5, 2009 at 2:53 AM // reply »
4 Comments

Hi,
It's good question and your answer is also excellent.The code works great for me for my project.Thanks for this article.


Oct 9, 2009 at 12:12 PM // reply »
2 Comments

Thanks Ben. As usual, a very useful post!


Post Comment  |  Ask Ben

Recent Blog Comments
Mar 19, 2010 at 7:26 PM
MySQL 3/4 - com.mysql.jdbc.Driver And allowMultiQueries=true
Thank you very much for this post. Adding allowMultiQueries="true" in context.xml didn't help until I added it to url as allowMultiQueries=true Good idea is to use prepared statements and it will he ... read »
Jim
Mar 19, 2010 at 4:49 PM
Nobody Puts Baby In The Corner!
Wow. This is like suddenly finding a support group for your secret shame. I'm not alone! I always liked this movie, even though it is extremely cheesy. I just wish Jennifer Grey hadn't gotten the ... read »
Mar 19, 2010 at 4:47 PM
Application.cfc OnRequest() Method Affects OnError() Arguments
@Jason and @Ben, I've been doing some CF9 refactoring on our systems and noticed an odd occurrence with onError as well. Found a way to work around my problem, but what I saw was... Background: Our ... read »
Jim
Mar 19, 2010 at 4:44 PM
Shoot 'Em Up Starring Clive Owen And Paul Giamatti
I actually enjoyed this movie quite a lot. It was different, certainly, but I think they were going for more of a Quentin Tarentino-"wow, that was weird"-vibe than an actual spoof. Once I realize ... read »
Mar 19, 2010 at 4:34 PM
An Intensive Exploration Of jQuery With Ben Nadel (Video Presentation)
Hey I guess the video is down. Is there anyway you can upload to youtube or vimeo or some other service? Greatly appreciated. ... read »
Mar 19, 2010 at 4:24 PM
ColdFusion CFPOP - My First Look
@Ben Thanks for the follow up! The root of the problem had to do with being able to trace bounced emails to specific records in a DB table. Let's say you run an email campaign and you get 1,000 bou ... read »
Mar 19, 2010 at 4:15 PM
SQL COUNT( NULLIF( .. ) ) Is Totally Awesome
Thank you Ben and Tony! Either of these work for the summary report I am working on and the info is much appreciated! I think I like Tony's a little better because I won't have to educate every ... read »
Mar 19, 2010 at 3:35 PM
ColdFusion Path Usage And Manipulation Overview
@Ben, Sorry. Clarification. expandpath worked for me in application.cfc, but not in other templates. ... read »