Re: Can I put a wddx packet into a database and read it back out?

2000-05-17 Thread Sharon DiOrio
It is very possible. INSERT INTO Table (Wddx) VALUES ('#myWDDX#') SELECT WDDX FROM Table WHERE WddxID = #WDDXID# 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 wro

Re: Can I put a wddx packet into a database and read it back out?

2000-05-17 Thread Justin MacCarthy
Yes to all 3 --- post the wddx to another page #MyWddx# insert into table (wddxfield) value ('#MyWddx#') #My2dArray[1][1]# #My2dArray[1][2]# Hope that helps ~JustinMacCarthy Coming soon WWW.CFFAQ.ORG - Original Message - From: zknoll <[EMAIL PROTECTED]> To: <[EMAIL

Re: Can I put a wddx packet into a database and read it back out?

2000-05-17 Thread Stephen M. Aylor
Yes - depending on a few things 1. How long is the wddx packet/string after you serialize your 2D Array? 2. Will that fit into a Access text field or will you have to use memo? either will work, depending on answer to #1. Sure there's better, but here's something Im using: Here's the

RE: Can I put a wddx packet into a database and read it back out?

2000-05-17 Thread Michael Paulsmeyer
Here you go... In one template... In the other template that you need to reference the array... #myarray[1]# I tested this with clientmanagement=yes in cfapplication tag and in cfserver set a db for client variables, using MSAccess2000. Mike. -Original Message- From: zknoll