It is very possible.
<!--- insert into database --->
<cfwddx action="CFML2WDDX" input="myArray" output="myWDDX">
<cfquery name="qInsWDDX" datasource="#APPLICATION.dsn#">
INSERT INTO Table (Wddx)
VALUES ('#myWDDX#')
</cfquery>
<!--- retrieve from database --->
<cfquery name="qSelWDDX" datasource="#APPLICATION.dsn#">
SELECT WDDX
FROM Table
WHERE WddxID = #WDDXID#
</cfquery>
<cfwddx action="WDDX2CFML" input="#qSelWDDX.WDDX#" output="myArray">
It doesn't matter what database you're using because WDDX is just a text
string.
HTH
Sharon
At 11:11 AM 5/17/2000 -0400, zknoll wrote:
>
>I have an 2-D array of information that I convert into a wddx packet to
>pass between templates but I would also like to be
>able to store the packet into a database and read it out again. A) Is
>this possible? B) Is it possible with access 200 as the
>backend database? C) If A and B are true can you show me a snippet of
>code as to how this would be done?
>
>---------------------------------------------------------------------------
---
>Archives: http://www.eGroups.com/list/cf-talk
>To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>
------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
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.