Darren,

Try looking at the problem differently.  You can treat your query as
structure of arrays.  If you do this you won't have to do any conversion
at all.  Simply set up a for () or <cfloop from to index> loop and out
put only the values you want.

<cfloop from=1 to=#news.recordcount# index="i">
        headline = news['headline'][i];
        // do something
</cfloop>

--
Josh Meekhof

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to