AndrewElliott
3-23-06, 10:26 AM
I'm getting the following error.
Inserted rows: #1062 - Duplicate entry '127' for key 1Modifications have been saved
I think the trouble is that the autonumber isn't advancing beyond 127...
none of my inserts are going through...
(unless I delete 127, in which case I can insert it again)
Anyone know what is going on, and how I can fix it.
SQL query: INSERT INTO `schedule` ( `id` , `showsid` , `ep_id` , `startdate` , `starttime` , `finishdate` , `sysdate` )
VALUES (
NULL , '5', '0', '2006-03-23 18:00:00', '6 PM', '2006-03-23 18:30:00',
CURRENT_TIMESTAMP
);
Inserted rows: #1062 - Duplicate entry '127' for key 1Modifications have been saved
I think the trouble is that the autonumber isn't advancing beyond 127...
none of my inserts are going through...
(unless I delete 127, in which case I can insert it again)
Anyone know what is going on, and how I can fix it.
SQL query: INSERT INTO `schedule` ( `id` , `showsid` , `ep_id` , `startdate` , `starttime` , `finishdate` , `sysdate` )
VALUES (
NULL , '5', '0', '2006-03-23 18:00:00', '6 PM', '2006-03-23 18:30:00',
CURRENT_TIMESTAMP
);