Parsing CSV Values In To A ColdFusion Query

<!---
	Send the CSV value to the UDF. Be sure to trim the value
	(leading and trailing spaces). We are going to leave the
	default delimiter (,) and qualifier (").
--->
<cfset qResult = CSVToQuery(
	CSV = strCSV.Trim()
	) />
 
<!--- Dump out the resultant query. --->
<cfdump
	var="#qResult#"
	label="CSV Results Query"
	/>

For Cut-and-Paste