vote up 0 vote down star

In a MySQL table the id column is set to auto_increment and the next auto_increment is set to 128 in phpmyadmin, but any new rows added have 127 as the value in the id row. I have no idea why.

Changed the column from tiny-int to int and everything working now, cheers.

flag
Could you post the results of "show create table TABLE_NAME;"? – joeslice Jul 12 at 23:44

1 Answer

vote up 7 vote down check

What is the columns type? I hope you didn't use tinyint :-) You should use int or number instead.

link|flag
Yep, sounds like tinyint to me too! – Gav Jul 12 at 23:43
indeed it is a tinyint column, didn't know that'd be a problem – Jonny Barnes Jul 12 at 23:45
tinyint has a range from -128 to +127, so is is not very well suited for auto_increment columns.. – codymanix Jul 13 at 0:02

Your Answer

Get an OpenID
or

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