vote up 1 vote down star

I have a query object, with, say, fifteen rows returned. For all intents and purposes, I can't modify the SQL which generates the query object, but I need to sort this query object by column. Is there a way to do this in ColdFusion 7 without resorting to an external library?

Edit: I should add: I've run a query on this query object, and done an ORDER BY clause in this query of the query. Is there another way of doing this?

flag

Regarding: "Is there another way of doing this?" - Can you tell why QoQ is not sufficient in this case? – Tomalak Jul 22 at 17:29
Tomalak: Due to some extenuating circumstances, the <cfquery> would happen in a view page, which hurts my soul way more than a function call would. – Hooray Im Helping Jul 22 at 17:40
2  
Yeah, I hate to do that myself. Could you not create a UDF to wrap the QofQ? Then you would just call the function in your view. Less of a sin, I'd think. – Al Everett Jul 22 at 18:34
I like that approach, Al. – Hooray Im Helping Jul 23 at 13:29

2 Answers

vote up 8 vote down check

No, a query of query is the way you would do this. There are other ways you could monkey around with the data, but they're all kludgey and wouldn't be as straightforward as QoQ.

One of the powers of QoQ (aka in-memory queries) is that it can be used on the query returned by any tag that returns a query object, for instance CFDIRECTORY and CFPOP.

For folks wondering how to do a Query of Query, it's simple:

  <cfquery name="resortQuery" dbtype="query">
  SELECT *
  FROM myQueryFromSomewhereElse
  WHERE
      COLUMN_NAME=<cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#myFilterValue#" />
  ORDER BY
      SOME_OTHER_COLUMN_NAME ASC
  </cfquery>
link|flag
vote up 0 vote down

Yes a query of queries will do the job.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.