Ask Ben: Displaying A Query Vertically Instead Of Horizontally

Posted March 4, 2007 at 10:41 AM

Tags: ColdFusion, Ask Ben

I am used to outputting a ColdFusion query horizontally (going across then breaking into another row). However, I need to display a query vertically through columns but I can't figure out how to loop over it or where to break the rows. Please help.

Looping over a query and outputting it across rows of table is nice and easy because there is no calculations that need to be done. Well not true, you do have to figure out when to break in to a new row, but that's a simple MOD calculation. If you want to display a query vertically, things get much more sticky because you are outputting in a horizontal methodology, but the cell value has to be based on the vertical position and column offset.

In order to figure out what query value to output you need to figure out where you are in terms of output row and column:

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

  • <!---
  • To demonstrate, first we have to build a test query.
  • For the purposes of demonstration, we are just going
  • to build a simple, number-incrementing query so you
  • can easily see where the values are output.
  • --->
  • <cfset qNumbers = QueryNew( "" ) />
  •  
  • <!--- Populate the query. --->
  • <cfset QueryAddColumn(
  • qNumbers,
  • "number",
  • "CF_SQL_VARCHAR",
  • ListToArray( "1,2,3,4,5,6,7,8,9,0" )
  • ) />
  •  
  •  
  • <!---
  • In order for this to work, you have to explicitly
  • define how many columns you want to output.
  • --->
  • <cfset intColCount = 3 />
  •  
  • <!---
  • Based on the columns and the record count of the query,
  • we can determine how many rows we are going to output.
  • In this case, we are using the ceiling function as we
  • will need to round up.
  • --->
  • <cfset intRowCount = Ceiling(
  • qNumbers.RecordCount / intColCount
  • ) />
  •  
  •  
  • <!---
  • Output the query. Unlike a traditional horizontally
  • outputted query, we cannot loop over the query itself
  • as it does not have "proper" ordering. Instead, we
  • have to loop over the rows and the columns and then
  • grab the appropriate value out of the query.
  • --->
  • <table>
  • <tr>
  •  
  • <!--- Loop over the rows, which we calculated above. --->
  • <cfloop
  • index="intRow"
  • from="1"
  • to="#intRowCount#">
  •  
  • <!--- Loop over the columns (set above). --->
  • <cfloop
  • index="intColumn"
  • from="1"
  • to="#intColCount#">
  •  
  • <!---
  • Here's where the magic happens. We need to
  • figure out which query cell value we are
  • getting based on the current row and column
  • indexes. If you think about it, the beginning
  • of each column begins with all the values
  • from the previous columns. That means that
  • each column begins with (COLUMN - 1) * the
  • number of rows in a column.
  • --->
  • <cfset intCellIndex = ((intRowCount * (intColumn - 1)) + intRow) />
  •  
  • <!---
  • Now, because we are outputting over a RxC
  • output, its possible that we will have a cell
  • that is outside of the record set. Check to
  • see if the cell index is beyond the record
  • count.
  • --->
  • <td>
  • <cfif (intCellIndex LTE qNumbers.RecordCount)>
  • #qNumbers[ "number" ][ intCellIndex ]#
  • <cfelse>
  • .<br />
  • </cfif>
  • </td>
  •  
  • </cfloop>
  •  
  • <!---
  • Check to see if we have any more rows to output.
  • Once we hit the final row, we will let the </tr>
  • post CFLoop handle the final close.
  • --->
  • <cfif (intRow LT intRowCount)>
  • </tr>
  • <tr>
  • </cfif>
  •  
  • </cfloop>
  •  
  • </tr>
  • </table>

Running that gives us the following output:

[ 1 ][ 5 ][ 9 ]
[ 2 ][ 6 ][ 0 ]
[ 3 ][ 7 ][ . ]
[ 4 ][ 8 ][ . ]

It's a bit more work, but it gets the job done.

Download Code Snippet ZIP File

Post Comment  |  Ask Ben  |  Other Searches  |  Print Page




Reader Comments

Mar 4, 2007 at 11:23 AM // reply »
2 Comments

It is producing an error:

Variable QNUMBERS is undefined.


The error occurred in D:\Sites\CF Test\index.cfm: line 14

12 : <body>
13 : <!--- To demonstrate, first we have to build a test query. For the purposes of demonstration, we are just going to build a simple, number-incrementing query so you can easily see where the values are output. --->
14 : <cfset QueryAddColumn(qNumbers,"number","CF_SQL_VARCHAR",ListToArray( "1,2,3,4,5,6,7,8,9,0" )) />


Mar 4, 2007 at 1:16 PM // reply »
7,572 Comments

@Ken,

Opps, I missed the very first line of code:

<cfset qNumbers = QueryNew( "" ) />

I have updated the code above. Sorry about that.


Tom
Mar 14, 2007 at 8:54 AM // reply »
12 Comments

I'm having trouble substituting a query in place of the number array you setup. I'm getting the right number of rows/columsn but as soon as I put the cfquery tag in, the output is wrong. I'm assuming I need to replace one of the cfloops with my cfoutput statements.


Mar 14, 2007 at 9:05 AM // reply »
7,572 Comments

DL, shoot me your code and I will take a look... ben [ at ] bennadel [ dot ] com.


Tom
Mar 15, 2007 at 9:50 AM // reply »
12 Comments

Thanks for the help, err. the code. I wasn't able to solve the problem but you sure did!

I look forward to seeing your posts in the other TAGS.


May 30, 2007 at 2:52 PM // reply »
2 Comments

Ben,
Would you mind posting the code that helped DL? I want to replace your array with a standard query.

--
Thanks for such a great blog!
Frank


May 30, 2007 at 4:36 PM // reply »
7,572 Comments

@Frank,

Glad you like the blog. The code above is actually working on a query. What you have to realize is that the query is being acted on just like it were an array. When I use the code:

#qNumbers[ "number" ][ intCellIndex ]#

That is access the query, "qNumbers", and getting the column value for the column "number" at row "intCellIndex".


May 30, 2007 at 4:53 PM // reply »
2 Comments

Ben,
Your the man, got it!

Keep up the quality posts!

--
Frank


May 30, 2007 at 4:55 PM // reply »
7,572 Comments

@Frank,

No problem. And if you ever get stuck on something or would just like to see a demo of something written up - I like to write demos :)

http://www.bennadel.com/ask-ben/


Post Comment  |  Ask Ben

Recent Blog Comments
Mar 20, 2010 at 12:07 PM
Drawing On The iPhone Canvas With jQuery And ColdFusion
Simply awesome. Saved my day. ... read »
Mar 20, 2010 at 9:00 AM
Building A Fixed-Position Bottom Menu Bar (ala FaceBook)
I would like to say thx for an easy way to create a bottom bar. I do have a ?. Is it possible to center the bar if i want to resize it to ex 85%. Regards Offenbach ... read »
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 »