I have a 2 part question.
First problem: I simply can't get the LOAD DATA INFILE command to work. I'm trying to load a txt file into a very simple database. I get the following error When I do the following query:
LOAD DATA INFILE "cars.txt" INTO TABLE cars
I get this error:
Access denied for user: 'xwreck@localhost' (Using password: YES)
When I add "LOCAL" to the input:
LOAD DATA LOCAL INFILE "cars.txt" INTO TABLE cars
I get this error:
Error 1148: The used command is not allowed with this MySQL version
Any ideas on why this doesn't work for me?
Now, the 2nd question I had is: Can the file I reference in the LOAD DATA query be a full URL: ex: http://www.yahoo.com/file.txt
Thank you for your help.