I am running version 4.0.12.NT on a Win XP Pro OS.
I am trying to work through the MySQL book by DuBois. When I try to run a load command I get an error.
From the mysql prompt I entered:
LOAD DATA LOCAL INFILE 'member.txt' INTO TABLE member;
What I get is:
Error 1148: The used command is not allowed with this MySQL version.
Why is Load Data command not working? How can I fix this?
I should add that if I go to command prompt and use
mysqlimport --local sampdb member.txt
that works. The file loads.
😕