I have followed some of the stackoverflow thread to come this far upto loading an image and getting the csv file into the docker container. Below are the steps followed:
- Loaded the mysql lite into docker
- Executed docker and set the default root password and went inside mysql to create databases and empty schema table
- copied the csv file to the docker container docker cp C:\<> <>:filename.csv
- when I tried to load this csv to the table, it is throwing me error
LOAD DATA INFILE filename.csv into TABLE tablename COLUMNS TERMINATED BY ',';
The error message is
ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement
Thank you in advance Please assist