当前位置:Gxlcms > mysql > mysql5sql-mode引起的错误解决办法

mysql5sql-mode引起的错误解决办法

时间:2021-07-01 10:21:17 帮助过:21人阅读

mysql5.0新加的sql-mode有关系,因为前一阵子刚刚看过手册.果然,作了如下更改后就不再提示了.

修改 my.ini 文件.

# Set the SQL mode to strict

代码如下
sql-mode=”STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION”

改为:

# Set the SQL mode to strict

代码如下
sql-mode=”NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION”

人气教程排行