程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> ERROR1148(42000):TheusedcommandisnotallowedwiththisMySQLvers

ERROR1148(42000):TheusedcommandisnotallowedwiththisMySQLvers

編輯:MySQL綜合教程

今天在使用mysql的LOAD DATA LOCAL INFILE 語法插入文件的時候,提示:ERROR 1148 (42000): The used command is not allowed with this MySQL version

原因是;如果編譯安裝mysql時沒有指定–enable-local-infile,那麼在使用上述命令時會報以上的錯誤:

解決方法:

解決方式有兩種,一是重新編譯安裝加上上面的參數,而是直接用命令行執行,如下:

mysql -uroot -proot mydb_name --local-infile=1 -e 'load data local infile "D:/ab.txt" into table mytbl(name,age)'

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved