Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

as you see in the title, even if i removed "not null" feature from the related field, it still doesn't let me to insert null value for that field although the field is nullable!

Any help would be appreciated.

EDITED

Create:

CREATE TABLE `review` (
..
`RATING` int(11) DEFAULT NULL,
..
(`CATALOG_ID`)
) ENGINE=InnoDB AUTO_INCREMENT=31625 DEFAULT CHARSET=latin5 ROW_FORMAT=DYNAMIC

Query:

INSERT INTO review (RATING,..) VALUES (null,..);

Error message:

Error: Column 'RATING' cannot be null
SQLState:  23000
ErrorCode: 1048

I also try to insert without RATING in the insert query, even if it is default null and nullable field, it gives the same error message and never inserts the field.

share|improve this question
2  
Teh codes please. Do a SHOW CREATE TABLE and post it here. – Alin Purcaru Jun 6 '11 at 7:37
what have you tried? – luca Jun 6 '11 at 7:40
I have edited content of the question, thanks. – Javatar Jun 6 '11 at 7:41
What version of mysql are you using? – Salman A Jun 6 '11 at 7:50
2  
Any triggers on the table? Execute this: show triggers like 'review'; What about constraints? Execute this too: show create table review; and paste result into question. – Bohemian Jun 6 '11 at 7:51
show 2 more comments

1 Answer

up vote 0 down vote accepted

Bohemian, thanks for your attention. You are right, i figured out that there is a trigger for insert action which effects the related field. I disable trigger and error is gone. Thanks.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.