I have 98 but had the same error. If you are trying:
mysql> LOAD DATA LOCAL INFILE "data.txt" INTO TABLE tablename;
Try instead:
mysql> LOAD DATA INFILE "data.txt" INTO TABLE tablename;
And I believe my txt file was in the mysql\data directory.
To run other scripts, the files have to be in the bin directory, and then
type:
mysql> source file.txt;
-----Original Message-----
From: Keno [mailto:ke...@coretechnologies.com]
Sent: Tuesday, July 02, 2002 11:01 PM
To: win...@lists.mysql.com
Subject: LOAD DATA command not working
Hi all,
Just installed Mysql 3.23.51 and use the mysqld-max-nt service. Created db,
tables. Now I want to load some data from an external file but I'm getting
an error claiming that the load data command is not working with the version
of mysql. Any ideas??