Hello,
I guess i was not clear enough for help.
I found this solution for others who are in need.
<cffile
action="read"file="\\my\complete\Path\UploadFolder\data.csv"
variable="datacsv">
<cfloop index="index" list="#datacsv#"
delimiters="#chr(10)##chr(13)#">
<cfquery datasource="redding" timeout="180">
Insert INTO Table(ListNum, ListingAgencyID,
ListingAgencyTechID, ListingAgencyName)
Values
('#listgetAt(index,1, ',')#', '#listgetAt(index,2,
',')#','#listgetAt(index,3, ',')#','#listgetAt(index,4, ',')#')
</cfquery>
</cfloop>
<strong><cfquery name="rscsvdemo"
datasource="Datasource">
SELECT * FROM tablename
</cfquery>
<cfdump var="#rscsvdemo#">
Thanks.