提示Loading local data is disabled; this must be enabled on both the client and server sides
解决方法:
1 登录mysql时: mysql --local-infile=1 -uroot -p
2 设置客户端加载功能: set global local_infile = 1;
然后加载本地文件就可以正常进行了。
提示Loading local data is disabled; this must be enabled on both the client and server sides
解决方法:
1 登录mysql时: mysql --local-infile=1 -uroot -p
2 设置客户端加载功能: set global local_infile = 1;
然后加载本地文件就可以正常进行了。