I've covered this topic a few times before, in various ways, but a reader wrote in today with a related question so I thought I'd write a quick "guide" to this topic. Basically - given any ColdFusion query - how would you loop over the data dynamically? Here is how I do it.

First, let's start with a basic query:

<cfquery name="getart" datasource="cfartgallery" maxrows="10"> select artname, description, price, issold, artid from art </cfquery>

To begin, I want to loop over every row. I can do that either with cfloop or cfoutput. cfoutput is the easiest way to do it as it automatically handles going from one to the total number of rows.

<cfoutput query="getart"> stuff </cfoutput>

That gives us one iteration per query. So how do I get the data? Remember that queries can be accessed using struct notation. That syntax is:

queryname[columnname][rownumber]

So given a query called getart, a column called artid, and row 5, I can output it like so:

#getart["artid"][5]#

That works if you know the columns, but in this case, we are doing it dynamically. ColdFusion gives us easy access to the columns though. Every query contains a value called "columnlist". As you can imagine, it is a list of columns. We can loop over that list like so:

<cfoutput query="getart"> #currentrow#) <cfloop index="col" list="#columnlist#"> #col#=#getart[col][currentRow]# </cfloop> <p/> </cfoutput>

Where did currentRow come from? It's another built in variable. So what happens when we run this?

1) ARTID=1 ARTNAME=charles10b DESCRIPTION=2Pastels/Charcoal ISSOLD=1 PRICE=13002 2) ARTID=2 ARTNAME=Michael DESCRIPTION=Pastels/Charcoal ISSOLD=0 PRICE=13900

  1. ARTID=3 ARTNAME=Freddy DESCRIPTION=Pastels/Charcoal ISSOLD=1 PRICE=12500

  2. ARTID=4 ARTNAME=Paulo DESCRIPTION=Pastels/Charcoal ISSOLD=1 PRICE=11100

  3. ARTID=5 ARTNAME=Mary DESCRIPTION=Pastels/Charcoal ISSOLD=1 PRICE=13550

  4. ARTID=6 ARTNAME=Space DESCRIPTION=Mixed Media ISSOLD=1 PRICE=9800

  5. ARTID=7 ARTNAME=Leaning House DESCRIPTION=Mixed Media ISSOLD=1 PRICE=7800

  6. ARTID=8 ARTNAME=Dude DESCRIPTION=Mixed Media ISSOLD=1 PRICE=5600

  7. ARTID=9 ARTNAME=Hang Ten DESCRIPTION=Mixed Media ISSOLD=0 PRICE=8900

  8. ARTID=10 ARTNAME=Life is a Horse DESCRIPTION=Mixed Media ISSOLD=0 PRICE=10500

Notice anything? The columns are not in the same order as the SQL. Now typically the order of columns in your SQL query shouldn't matter, but if you did want to use the same order you have yet another option: getMetaData. When called on the query like so:

<cfset cols = getMetadata(getart)>

You get an array of structs containing data about the columns:

I can use this array to make a new list that respects the order from my query:

<cfset colList = ""> <cfloop from="1" to="#arrayLen(cols)#" index="x"> <cfset colList = listAppend(colList, cols[x].name)> </cfloop>

Once I have that, I simply modify the code I used before to use colList instead of columnlist:

<cfoutput query="getart"> #currentrow#) <cfloop index="col" list="#collist#"> #col#=#getart[col][currentRow]# </cfloop> <p/> </cfoutput>

And that's it. I've pasted the entire test below if you want to play around with it.

<cfquery name="getart" datasource="cfartgallery" maxrows="10"> select artname, description, price, issold, artid from art </cfquery>

<cfoutput query="getart"> #currentrow#) <cfloop index="col" list="#columnlist#"> #col#=#getart[col][currentRow]# </cfloop> <p/> </cfoutput>

<cfset cols = getMetadata(getart)> <cfset colList = ""> <cfloop from="1" to="#arrayLen(cols)#" index="x"> <cfset colList = listAppend(colList, cols[x].name)> </cfloop>

<cfoutput query="getart"> #currentrow#) <cfloop index="col" list="#collist#"> #col#=#getart[col][currentRow]# </cfloop> <p/> </cfoutput>