Re: Query vs. structure

2004-03-10 Thread Rob
On Wed, 2004-03-10 at 11:51, Burns, John wrote:
 In a web service, I've heard that there are issues with returning a CF
 query to a language other than CF.Is there any kind of a function to
 convert a query directly to a structure without having to loop over it
 and manually transfer it?Any insight on the whole returning of
 variables from a web service would be appreciated as well.

I have a custom tag that turns a query into xml

http://www.rohanclan.com/index.cfm?mode=productproduct=cfxtoxml

It's not free, but there is more then likely something similar out there
if you need a free solution.

-- 
Rob [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Query vs. structure

2004-03-10 Thread Nathan Strutz
QueryToStructOfArrays
http://www.cflib.org/udf.cfm/QueryToStructOfArrays

QueryToStructOfStructures
http://www.cflib.org/udf.cfm/QueryToStructOfStructures

QueryToArrayOfStructures
http://www.cflib.org/udf.cfm/QueryToArrayOfStructures

QueryToCSV
http://www.cflib.org/udf.cfm/QueryToCSV

QueryToVars
http://www.cflib.org/udf.cfm/QueryToVars

QueryToXML
http://www.cflib.org/udf.cfm/QueryToXML

Although I encourage you to try the Query method. I know some bugs got
worked out in the 6.1 release.

-nathan strutz

-Original Message-
From: Burns, John [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 10, 2004 12:52 PM
To: CF-Talk
Subject: Query vs. structure

In a web service, I've heard that there are issues with returning a CF
query to a language other than CF.Is there any kind of a function to
convert a query directly to a structure without having to loop over it
and manually transfer it?Any insight on the whole returning of
variables from a web service would be appreciated as well.

John
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Query vs. structure

2004-03-10 Thread Rob
On Wed, 2004-03-10 at 12:09, Nathan Strutz wrote:
 QueryToXML
 http://www.cflib.org/udf.cfm/QueryToXML

does this tag supress the ?xml ... ? part when you do
toString(xmlDoc)? That was killing me when trying to pass stuff around,
and build complex xml documents where the query is just one part of the
doc.

-- 
Rob [EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Query vs. structure

2004-03-10 Thread Adrocknaphobia
If you are going to the XML route, might as well use WDDX.
-Adam

 -Original Message-
 From: Nathan Strutz [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, March 10, 2004 08:09 PM
 To: 'CF-Talk'
 Subject: RE: Query vs. structure
 
 QueryToStructOfArrays
 http://www.cflib.org/udf.cfm/QueryToStructOfArrays
 
 QueryToStructOfStructures
 http://www.cflib.org/udf.cfm/QueryToStructOfStructures
 
 QueryToArrayOfStructures
 http://www.cflib.org/udf.cfm/QueryToArrayOfStructures
 
 QueryToCSV
 http://www.cflib.org/udf.cfm/QueryToCSV
 
 QueryToVars
 http://www.cflib.org/udf.cfm/QueryToVars
 
 QueryToXML
 http://www.cflib.org/udf.cfm/QueryToXML
 
 
 Although I encourage you to try the Query method. I know some bugs got
 worked out in the 6.1 release.
 
 -nathan strutz
 
-Original Message-
From: Burns, John [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 10, 2004 12:52 PM
To: CF-Talk
Subject: Query vs. structure
 
 
In a web service, I've heard that there are issues with returning a CF
query to a language other than CF.Is there any kind of a function to
convert a query directly to a structure without having to loop over it
and manually transfer it?Any insight on the whole returning of
variables from a web service would be appreciated as well.
 
 
John
 
 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]