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?
| ||||
|
feedback
|
|
I just ran into this issue as well. I had to add "LOCAL" to my SQL statement. For example, this gives the permission problem: Add "LOCAL" to your statement and the permissions issue should go away. Like so: | |||
|
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. | |||
|
feedback
|
|
It probably means that the password you supplied for | |||
|
feedback
|