0

尝试在 aws RDS 上将文件插入 mysql 时,我的 SQL 出现一个奇怪的错误。

(<class '_mysql_exceptions.OperationalError'>, OperationalError(1148, 'The used command is not allowed with this MySQL version'), <traceback object at 0x7f34d8485dd0>)

我在 ubuntu 12.04 桌面上运行,只是做了一个 apt_install mysql-server mysql-client。

我该如何解决这个问题?

mysql -V mysql Ver 14.14 Distrib 5.5.24,用于使用 readline 6.2 的 debian-linux-gnu (x86_64)

4

1 回答 1

0

尝试使用 --local-infile=1 启动 mysql 服务器

因此,根据您启动服务器的方式,它看起来像:

$ mysql --local-infile=1 -u root -p

于 2013-01-24T02:03:37.000 回答