#1366 - Incorrect integer value: 'NULL' for column 'cid' at row 1

こ雲淡風輕ζ 提交于 2019-11-28 09:49:29

问题


I have installed MyBB local using XAMPP and it goes smoothly. But when I do it on the server it give me errors.

MyBB creates and inserts a lot of data by itself and I found out the errors are in queries like:

INSERT INTO... VALUES ('NULL', ...)

On my localhost MySQL (which is 5.5.27 for both) accepts this kind of query, where 'NULL' is passed as a String. But in the server it gives an error #1366 as the title says.

The problem is that changing the query is not an option since it is A LOT of queries, so anyone has an idea where I can configure this to work?

Thanks in advance.


回答1:


The problem is that for MySQL (in this case) 'NULL' is not the same as NULL.

Due to the fact that the column is expecting numeric data your statement does not work while the following would work:

INSERT INTO ... VALUES (NULL, ...)

... maybe you can change the MySQL mode the server is running on.




回答2:


I think your MySQL Server is running in strict mode.

This can be fixed in one of two ways, but you may have to get your hosting company to do this for you.

Method 1: Open the "my.ini" file within the MySQL installation directory and look for something like...

# Set the SQL mode to strict
sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"

Replace with:

# Set the SQL mode to strict
sql-mode="NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"

Method 2:

You may be able to run an SQL query within your database management tool such as phpMyAdmin which can normally be found from your web hosting control panel:

SET @@global.sql_mode= '';


来源:https://stackoverflow.com/questions/20469720/1366-incorrect-integer-value-null-for-column-cid-at-row-1

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!