Would this create session variables?

2008-06-16 Thread Rick Faircloth
Would this part of a cffunction create individual session variables from the query? SELECT * FROM our_agents WHERE website = '#arguments.website#' Back on the invoking page, the returnvariable is 'get_agent'. I've

Re: Would this create session variables?

2008-06-16 Thread Alan Rother
Rick, What you have literally done is switch scopes on your query variable: SELECT * FROM our_agents WHERE website = '#arguments.website#' get_agent is actually, variables.get_agent, which is a query object. You then copied it into the session scope. To break out all the indiv

Re: Would this create session variables?

2008-06-16 Thread Barney Boisvert
try this: cheers, barneyb On Mon, Jun 16, 2008 at 8:44 PM, Rick Faircloth <[EMAIL PROTECTED]> wrote: > Would this part of a cffunction create > individual session variables from the query? > > > SELECT * > FROM our_agents > WHERE website = '#arguments.website#' > > > > >

RE: Would this create session variables?

2008-06-18 Thread Rick Faircloth
Sent: Monday, June 16, 2008 11:57 PM > To: CF-Talk > Subject: Re: Would this create session variables? > > try this: > > > > > > cheers, > barneyb > > On Mon, Jun 16, 2008 at 8:44 PM, Rick Faircloth > <[EMAIL PROTECTED]> wrote: > > Woul

RE: Would this create session variables?

2008-06-18 Thread Jason Durham
s for them best. HTH Jason -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 18, 2008 9:58 AM To: CF-Talk Subject: RE: Would this create session variables? Thanks for the tip and code, Alan & Barney! It's working great! I was concerned that