Jake,

Your situation probably does not need a complicated custom structure
construct like a sent you last night.

A buddy of hipped me to this technique for you. You just name your query's
name in the session or application scope (depending on what type of data -
user data or application data).

Here you go:


<cfif NOT IsDefined("session.stgetcust") OR NOT application.flag>

<cfquery datasource="northwind" name="session.stgetcust">
        SELECT *
        FROM customers
</cfquery>

</cfif>

<cfoutput query="session.stgetcust">
        #CustomerID#<br />
        #CompanyName#<br />
        #ContactName#<br />
        #Phone#<br />
        #Fax#<br />
</cfoutput>


This should work out much better for you.

Cheers,

Phillip B. Holmes


---
[This E-mail has been scanned for viruses.]

----------------------------------------------------------
To post, send email to [EMAIL PROTECTED]
To unsubscribe: 
   http://www.dfwcfug.org/form_MemberUnsubscribe.cfm
To subscribe: 
   http://www.dfwcfug.org/form_MemberRegistration.cfm


Reply via email to