我在student_course数据库下有个表students, 想导入数据
1.首先我用的是LOAD DATA INFILE 
"students.txt"INTO TABLE students;
mysql> LOAD DATA INFILE
    -> "students.txt"INTO TABLE students;
Query OK, 3 rows affected (0.06 sec)
Records: 3  Deleted: 0  Skipped: 0  Warnings: 0mysql>数据插入进去了,表示我需要导入的.txt文本格式没有出错
2.quit; 退出后,
使用命令
mysqlimport  -uroot -p123456 student_course  students.txt;却显示找不到路径
C:\Users\Administrator>mysqlimport  -uroot -p123456 student_course students.txt;mysqlimport: Error: File 'C:\Program Files\MySQL\MySQL Server 5.0\Data\student_c
ourse\students.txt;' not found (Errcode: 2), when using table: students
这是为什么?
3.还有一个疑问:向mysqldump ,mysqlimport 这些命令是不是独立于mysql ,在dos环境下需要分别登陆吧!!