Gets the values of each record returned from an executed query.
CFML does not evaluate the arguments
quotedValueList(column [, delimiter])
→ returns string
,
<cfquery name = "GetCourseList" datasource = "cfdocexamples">
SELECT *
FROM CourseList
WHERE Dept_ID IN ('#GetDepartments.Dept_ID#')
</cfquery>
<cfoutput>
#quotedValueList(GetCourseList.CorNumber,";")#
</cfoutput>
Signup for cfbreak
to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.