1、当上传本地文件到mysql服务器时,load data local infile “c:/test.txt”
into table test(test);
2、mysql报错:ERROR 1148 (42000): The used command is not allowed with this MySQL version
3、原因是mysql版本不支持
检查一下mysql版本号:mysql> select version();
mysql5.1或者以上的都支持load data local infile操作
4、解决方法:登录是加 --local-infile 可解决问题
例子: mysql --local-infile -u test -p
5、如果你觉得每次都要加参数很麻烦,可以在安装时加上--enable-local-infile
例子:
./configure --prefix=/usr/local/mysql --enable-local-infilemakemake install