Hi
I want to write the contents of a csv file to a SQL table, and I need to iterate through each row in the csv and write it row by row. Is there a way to iterate through a csv formatted string and do this?
The string is in the format:
column1;column2;column3;column4;column5;column6;column7;
value;value;value;value;value;value;value;
value;value;value;value;value;value;value;
value;value;value;value;value;value;value;
I need a module that iterates throught the parsed csv so that I can insert it into the SQL table. I need to do this since I can only insert values from the first row of the CSV, the other ones are inaccessible:

