LOAD DATA INFILE Error Code : 13

后端 未结 19 2524
有刺的猬
有刺的猬 2020-11-28 02:37

In my remote MySQL, when I try to execute this query, I am getting the MySQL Error Code : 13.

Query -

LOAD DATA INFILE 
\'/httpdocs/.../.../testFile.         


        
19条回答
  •  悲&欢浪女
    2020-11-28 03:20

    Error 13 is nothing but the permission issues. Even i had the same issue and was unable to load data to mysql table and then resolved the issue myself.

    Here's the solution:

    Bydefault the

    --local-infile is set to value 0

    , inorder to use LOAD DATA LOCAL INFILE it must be enabled.

    So Start mySQL like this :

    mysql -u username -p --local-infile

    This will make LOCAL INFILE enabled during startup and thus there wont be any issues using it !

提交回复
热议问题