RE: Help! Inserting WDDX into the database

2003-09-22 Thread Pascal Peters
CC: Onderwerp: RE: Help! Inserting WDDX into the database Actual it's there is you look closely... At 09:48 AM 9/19/2003 +0200, you wrote: I think you are missing a closing parenthisis: '#tempWddxData2

RE: Help! Inserting WDDX into the database

2003-09-19 Thread Pascal Peters
I think you are missing a closing parenthisis: '#tempWddxData2#' ) /cfquery Pascal -Oorspronkelijk bericht- Van: Brook Davies [mailto:[EMAIL PROTECTED] Verzonden: do 18/09/2003 22:37 Aan: CF-Talk CC: Onderwerp: Help! Inserting WDDX

RE: Help! Inserting WDDX into the database

2003-09-19 Thread Ryan Kime
That and you may want to look into PreserveSingleQuotes() -Original Message- From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: Friday, September 19, 2003 2:49 AM To: CF-Talk Subject: RE: Help! Inserting WDDX into the database I think you are missing a closing parenthisis

RE: Help! Inserting WDDX into the database

2003-09-19 Thread Brook Davies
22:37 Aan: CF-Talk CC: Onderwerp: Help! Inserting WDDX into the database I have a WDDX packet that, no matter what I try, generates an error when I try to insert it into a SQL 7.0 DB. Any ideas? My Query looks like this: cfwddx

RE: Help! Inserting WDDX into the database

2003-09-19 Thread Brook Davies
Tried that with no luck... At 08:38 AM 9/19/2003 -0500, you wrote: That and you may want to look into PreserveSingleQuotes() -Original Message- From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: Friday, September 19, 2003 2:49 AM To: CF-Talk Subject: RE: Help! Inserting WDDX

Help! Inserting WDDX into the database

2003-09-18 Thread Brook Davies
I have a WDDX packet that, no matter what I try, generates an error when I try to insert it into a SQL 7.0 DB. Any ideas? My Query looks like this: cfwddx input=#tempWddxData# output=tempWddxData2 action=cfml2wddx !--- add a new member to an existing pool --- cfquery

RE: Help! Inserting WDDX into the database

2003-09-18 Thread Ryan Kime
Subject: Help! Inserting WDDX into the database I have a WDDX packet that, no matter what I try, generates an error when I try to insert it into a SQL 7.0 DB. Any ideas? My Query looks like this: cfwddx input=#tempWddxData# output=tempWddxData2 action=cfml2wddx !--- add a new member to an existing

RE: Help! Inserting WDDX into the database

2003-09-18 Thread Brook Davies
Kime -Original Message- From: Brook Davies [mailto:[EMAIL PROTECTED] Sent: Thursday, September 18, 2003 3:37 PM To: CF-Talk Subject: Help! Inserting WDDX into the database I have a WDDX packet that, no matter what I try, generates an error when I try to insert it into a SQL 7.0 DB. Any

Help with WDDX

2000-09-06 Thread Marcus
Hey all, I need a jump start with a WDDX solution I have to come up with. I need to query a table, take the results and change a few of the variable names, serialize it using wddx, and then send that packet in an email. Problem is, I have never done WDDX before... any pointers? Marcus

Re: Help with WDDX

2000-09-06 Thread JustinMacCarthy
I need to query a table, take the results and change a few of the variable names, It is best to change var names in the SQL so, if you want to change column col_1 - MyVarName1 cfquery name="q" SELECT col_1 as MyVarName1, col_2 as MyVarName2 FROM myTable /cfquery serialize it using wddx,

RE: Help with WDDX

2000-09-06 Thread Marcus
I need to query a table, take the results and change a few of the variable names, It is best to change var names in the SQL so, if you want to change column col_1 - MyVarName1 cfquery name="q" SELECT col_1 as MyVarName1, col_2 as MyVarName2 FROM myTable /cfquery serialize it