cfmodule and query of queries

2010-02-09 Thread Thane Sherrington
Hi all, This is probably a stupid question, but my simple mind can't figure it out. I'm trying to do the following: 1)Have a cfmodule that does a large query. 2)Have a series of cfmodules that do a query of query on the large query 3)Have a script that calls the cfmodules But I can't

RE: cfmodule and query of queries

2010-02-09 Thread LRS Scout
: cfmodule and query of queries Hi all, This is probably a stupid question, but my simple mind can't figure it out. I'm trying to do the following: 1)Have a cfmodule that does a large query. 2)Have a series of cfmodules that do a query of query on the large query 3)Have a script that calls

Re: cfmodule and query of queries

2010-02-09 Thread Eric Cobb
You should really be doing this in a CFC. They're built for stuff like this. Thanks, Eric Cobb http://www.cfgears.com ColdFusion - the most profitable dead language I've ever worked with. Thane Sherrington wrote: Hi all, This is probably a stupid question, but my simple mind can't

Re: cfmodule and query of queries

2010-02-09 Thread Claude Schnéegans
But I can't figure out how to pass the query from one module to another. You can also set your query in the request scope, ie : request.MyQuery The request scope is visible in any module and sub modules. ~| Want to reach the