I use MySQL queries all the time in PHP, but when I try LOAD DATA INFILE, I get the following error #1045 - Access denied for user 'user'@'localhost' (using password: YES) Does anyone know what this means?

link|improve this question

57% accept rate
feedback

3 Answers

I just ran into this issue as well. I had to add "LOCAL" to my SQL statement.

For example, this gives the permission problem:
LOAD DATA INFILE '{$file}' INTO TABLE {$table}

Add "LOCAL" to your statement and the permissions issue should go away. Like so:
LOAD DATA LOCAL INFILE '{$file}' INTO TABLE {$table}

link|improve this answer
this worked for me! – Andreas Jansson May 31 '11 at 10:34
feedback

Ensure your MySQL user has the FILE privilege granted.

If you are on shared web hosting, there is a chance this is blocked by your hosting provider.

link|improve this answer
feedback

It probably means that the password you supplied for 'user'@'localhost' is incorrect.

link|improve this answer
I don't think so. I can do other queries with the same password. – Brian Feb 8 '10 at 11:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.