> So therefore, (attempting to sound intelligent here...)
> IF you invoke a query via CFMODULE, the query results are
> available through
> the request scope as request.(query name)

Alan,

Not in my experience, nor could I reproduce your results with the code
below. It would be a pretty huge bug if it *did* work, though... what
version of CF are we talking about here?

------------
qry_test.cfm
------------

<cfquery datasource="somedsn" name="qry_test">
        SELECT *
        FROM SomeTable
</cfquery>

----------------
requestquery.cfm
----------------

<cfmodule template="qry_test.cfm">

<cfloop query="request.qry_test">
        #password#
</cfloop>


--
Roger



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to