PDA

View Full Version : Deleting a new line


masterofollies
11-13-2005, 05:42 AM
In my mysql database, there is 99 levels, and I tried adding level 100, but found out the scripts only allow up to 99, so I need to delete that extra line and haven't found out how to do it, any help?

Velox Letum
11-14-2005, 05:33 AM
What do you mean? Line of what? If the database was set only to allow two digits, then it did not insert. If you wish to insert more, alter the table and set the restricting value (probably a tinyint(2)) to something like tinyint(3).

Or are you saying that you broke your script inserting a new level? In that case, you can use phpMyAdmin to access the database and delete the extra row.