coldfusion - Dump Session Into SQL Database -



coldfusion - Dump Session Into SQL Database -

is possible dump coldfusion session sql database? have many session values , want dump of them database. didn't know if had write each value database or if have huge session dumps values or variables used database.. have checkout form, fill out many questions , confirm on lastly page. when nail confirm want they've entered in entire session dump database. know can find illustration of or can provide one?

to want, this:

<cfsavecontent variable="sessiondata"> <cfdump var="#session#" format="text"> </cfsavecontent> <cfquery> insert table (sessiondata) values (<cfqueryparam cfsqltype="cf_sql_varchar" value=#sessiondata#">)

it's quick , simple , leaves info that's hard with. if me, i'd this:

<cfoutput> <cfloop collection="#session#" item="x"> key #x# value #session[x]# <br /> </cfloop> </cfoutput>

except, instead of displaying key value pairs, i'd store them in normalized manner in relational database.

sql coldfusion

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -