When inserting data in mysql i get this error:
Error Number: 1467 Failed to read auto-increment value from storage engine
I don\'t now how to solve this i
I received this message too. My problem was that my table was not sorted by index. Try using the following:
ALTER TABLE `YOUR-TABLE` ORDER BY `index` ;