RE: structure in request scope

2001-05-14 Thread Patricia Lee
Yup. Was part of a different message, though. it's all good. |-Original Message- | |I guess you missed the part about the query being cached. | |best, paul | ~~ Structure your ColdFusion code with Fusebox. Get the official book at http:

RE: structure in request scope

2001-05-14 Thread Paul Smith
ting some of the time you would save by creating >the query in the shared scope. > >|-Original Message- >|From: Paul Smith [mailto:[EMAIL PROTECTED]] >|Sent: Friday, May 11, 2001 9:50 AM >|To: CF-Talk >|Subject: RE: structure in request scope >| >| >|I find it

RE: structure in request scope

2001-05-13 Thread Patricia Lee
Smith [mailto:[EMAIL PROTECTED]] |Sent: Friday, May 11, 2001 9:50 AM |To: CF-Talk |Subject: RE: structure in request scope | | |I find it easier and simpler to put the query in request scope |in the first |place (not really necessary) and cache it. That way, none of |the below is |necessary

RE: structure in request scope

2001-05-11 Thread Stephen Moretti
How about using the query caching attributes of CFQUERY if your queries are pretty stable and unchanging? Regards Stephen > -Original Message- > From: Paul Smith [mailto:[EMAIL PROTECTED]] > Sent: 11 May 2001 14:50 > To: CF-Talk > Subject: RE: structure in request scope

RE: structure in request scope

2001-05-11 Thread Paul Smith
gt; > > [SQL Stuff] > > > > > > > > > >|-Original Message- >|From: Sean Daniels [mailto:[EMAIL PROTECTED]] >|Sent: Thursday, May 10, 2001 10:54 AM >|To: CF-Talk >|Subject: Re: structure in reques

RE: structure in request scope

2001-05-11 Thread Patricia Lee
[SQL Stuff] |-Original Message- |From: Sean Daniels [mailto:[EMAIL PROTECTED]] |Sent: Thursday, May 10, 2001 10:54 AM |To: CF-Talk |Subject: Re: structure in request scope | | |On 5/10/01 1:59 AM Mark Ireland wrote: | |> Could someon

Re: structure in request scope

2001-05-10 Thread Sean Daniels
On 5/10/01 1:59 AM Mark Ireland wrote: > Could someone tell me how to load a structure into the request scope in the > application.cfm > > once only when a user first visits a page. That is, check that the > structure is there and dont rerun the query code if it is > > unless a change has been

RE: structure in request scope

2001-05-10 Thread mherbene
A request scope variable must be re-set for each page load - that's how request variables work. You could do this which would run this query at the internal indicated by the cachedwithin attribute; if between query runs the CF server would just look at the most recent query results and put th