tags:

views:

15

answers:

1

like the title. I guess it is the matter of file's name. But I try "D://w.init" and "file:///D:\w.ini", I util get this wrong message.

+2  A: 

My wild guess is that you are running this command on a remote mySQL server, and trying to LOAD INFILE a file on your local D:\ drive.

This cannot work, as the mySQL on server side can't access your local D: drive.

You will need to upload the file to your server first.

Pekka
you are right, thank you
Keating