skein Posted November 17, 2007 Share Posted November 17, 2007 It worked fine at first but now it only enters NULL parameters into the table. What the hell??? i reinstalled it for diffrent drives but still the same thing happens. Quote Link to comment https://forums.phpfreaks.com/topic/77716-solved-mysql-something-wrong/ Share on other sites More sharing options...
rajivgonsalves Posted November 17, 2007 Share Posted November 17, 2007 what code your using what is entering null in the table, your description is very vauge Quote Link to comment https://forums.phpfreaks.com/topic/77716-solved-mysql-something-wrong/#findComment-393390 Share on other sites More sharing options...
skein Posted November 17, 2007 Author Share Posted November 17, 2007 well i created a table: CREATE TABLE a (a text); then i insert a value: INSERT INTO a VALUES(a='aaa'); but it shows that i entered NULL Quote Link to comment https://forums.phpfreaks.com/topic/77716-solved-mysql-something-wrong/#findComment-393391 Share on other sites More sharing options...
fenway Posted November 19, 2007 Share Posted November 19, 2007 well i created a table: CREATE TABLE a (a text); then i insert a value: INSERT INTO a VALUES(a='aaa'); but it shows that i entered NULL That's because that's not valid syntax... try INSERT INTO a (a) VALUES('aaa'); Quote Link to comment https://forums.phpfreaks.com/topic/77716-solved-mysql-something-wrong/#findComment-394454 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.