This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // cfscript method of a query of queries | |
| // there seems to be no supported way to create a qoq using the more common queryNew() cfscript | |
| local.qoqObj = new Query(dbtype='query', sql="select * from qrySource where [sql conditional] ") ; // qrySource is an attribute set below | |
| local.qoqObj.setAttributes(qrySource=local.actualSourceQuery) ; // | |
| local.qryQoqResults = local.qoqObj.execute().getResult() ; | |
NewerOlder