有没有办法在共享主机中打开MYSQL中innoDB的严格模式?使用 phpmyadmin 或 SSH 访问什么的?还是必须由服务器管理员完成?
问问题
1627 次
1 回答
0
According to mysql documentation ( http://dev.mysql.com/doc/refman/5.1/en/innodb-parameters.html and http://dev.mysql.com/doc/refman/5.5/en/innodb-other-changes-strict-mode.html ) inno db strict mode is a global dynamic setting.
As a dynamic setting you may change it on runtime, but as a global setting you may do it only if your user has the SUPER privilege. Users without SUPER privilege can't manage this setting because its value affects to all clients.
So only server administrators may turn on/off this setting.
Regards.
于 2013-09-11T00:31:18.597 回答