I am trying to load a file into a table using
LOAD DATA INFILE 'member.txt' INTO TABLE member;
When I run that I get the following error:
ERROR 1105: File '.\sampdb\member.txt' not found (Errcode: 2)
Which I don't understand because the current directory is where the file is located. When I do a "dir" at the cmd prompt it returns:
Directory of C:\Documents and Settings\RLane\My Documents\Active Web Sites\Localhost\sampdb
and the listing of files shows the member.txt file.
What am I doing wrong?
😕