> Any way to take a whole set of variables and store them in the FORM scope
> without a CFSET for each variable?
> I need to output all the session variables to a database using
> cfinsert and
> I believe they have to be converted to FORM.scope before you can
> do this ...
> or is that wrong?

I guess this would be true if you are using CFUPDATE and CFINSERT for your
DB actions....

In this case I would suggest using CFQUERY and SQL...

<CFQUERY name="queryname" datasource="DataSource">
  INSERT INTO tablename(
        name,
        phone
  ) VALUES (
        '#Session.name#',
        '#Session.phone#'
  )
</CFQUERY>

-Cameron

--------------------
Cameron Childress
ElliptIQ Inc.
p.770.460.7277.232
f.770.460.0963

------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to