Hi,
Is there a function that automatically converts query results to a list? I thought I read somewhere that there is one, but couldn't find it now. Or do I need to use cfloop to append query results to the list one by one?
Thank you in advance!
Regards,
Min
Is there a function that automatically converts query results to a list? I thought I read somewhere that there is one, but couldn't find it now. Or do I need to use cfloop to append query results to the list one by one?
Code:
<cfquery name="getProductId">
select productId
from product
</cfquery>
<cfset x = QueryToList(getProductId.productId)> ???
Regards,
Min