RE: Query to List

2003-08-27 Thread Tyler Clendenin
There are two ways you can do this. There is a function names ValueList() I am not sure what the syntax is. Or you can do what I do and just access the query as an array. You do not need to set and array bwecause the query already acts as one. Ex. Your query is named MyQuery and you want to show

Re: Query to List

2003-08-27 Thread DDB Lists
Did you check out valuelist(query.column) - Original Message - From: "G-matcomkc" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, August 27, 2003 5:41 PM Subject: Query to List > In the CF docs, I saw some code that converted a query result into a list. ~~~

RE: Query to List

2003-08-27 Thread Tim Blair
> Is this the accepted, most efficient process for doing this > type of conversion? Or am I missing an obvious short cut? Check out the valuelist() function. Tim. --- RAWNET LTD - Internet, New Media and ebusiness Gurus. Visit our new website

RE: Query to List

2003-08-27 Thread Tim Do
ValueList(query.column [, delimiter ]) -Original Message- From: G-matcomkc [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 27, 2003 8:41 AM To: CF-Talk Subject: Query to List In the CF docs, I saw some code that converted a query result into a list. They did it by looping over the que