LOAD DATA LOCAL INFILE not working in RDS
问题 I have wordpress website and have created plugin to import csv to a table. Database is in RDS. Here is the sql I have used LOAD DATA LOCAL INFILE 'my.csv' INTO TABLE tablename CHARACTER SET UTF8 FIELDS TERMINATED BY ',' ENCLOSED BY '\"' LINES TERMINATED BY '\r\n' IGNORE 1 LINES ( ID, Name Address ) When I run this sql in sqlyog in the same database ( database in RDS ) this works perfectly. Please note csv file used is on my windows folder and given absolute path. However when I run this sql