我有一个文本文件,每行一个单词。例如:
By
the
shore
of
the
ocean
我想将它们导入到一个名为words.sql的SQL数据库中。
当我尝试这样做时,我收到此错误:
mysql> use words;
Database changed
mysql> LOAD DATA LOCAL INFILE '/home/admin/words/words.txt' INTO TABLE words;
ERROR 1148 (42000): The used command is not allowed with this MySQL version
我用这个命令启动mysql:
mysql -u root -p -D words --local-infile=0
如何将此文本文件导入我的数据库?我做错了什么?
我还有另一个着名引号的文本文件,我想将它放入一个名为引号的数据库中,但需要弄清楚如何在我走得更远之前解决这个问题。
提前谢谢你。
(如果您想知道我是如何使用这些命令的话,我已从其他各种网站获取这些命令)