我使用MySQL中的LOAD DATA INFILE语法和系统报告,我有--secure-file-priv选项错误。然后我搜索了那个问题并将路径更改为我经常使用的路径,然后重新启动MySQL,但问题依然存在如下:
mysql> show global variables like 'secure%'
+------------------+-----------------------------------------------+
| Variable_name | Value |
+------------------+-----------------------------------------------+
| secure_auth | ON |
| secure_file_priv | E:\career\QuantumFinancialService\data_extra\ |
+------------------+-----------------------------------------------+
2 rows in set, 1 warning (0.00 sec)
mysql> LOAD DATA INFILE 'E:\career\QuantumFinancialService\data_extra\test.csv' INTO TABLE test1;
ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement
我该如何解决这个问题?
顺便说一句,如果我把我的secure_file_priv这样,这对我的子文件夹也有效吗?说' E:\ career \ QuantumFinancialService \ data_extra \ foo \'。
有没有办法可以关闭整个安全的东西?
PS:这绝对不是一个重复的问题!请仔细看看!