I have a CSV file that when I'm opening it, it gives me the "File not loaded completely". I want to make a script that dynamically imports to MySQL this file. I'm using this script:
$sql = "load data local infile 'filename.csv' into table myTable `fields terminated by ','`
enclosed by ''
lines terminated by '\n'
(col1, col2, col3)";
It works for other csv files but, for this file with the error it doesn't.