What not to do in mysql
Aug. 19th, 2002 11:49 amTell it, "delete from timeline where id>1-64" where what you actually MEAN is "delete from timeline where id>1064". Because this apparently translates to "delete EVERYTHING"!
And if you do do that, for gods' sake, don't actually close the mysql session, because then all your transactions will then be made final and you don't have a chance to undo what you just did to completely hose yourself and have to enter over a thousand records of data all over again.
ARGH!
And if you do do that, for gods' sake, don't actually close the mysql session, because then all your transactions will then be made final and you don't have a chance to undo what you just did to completely hose yourself and have to enter over a thousand records of data all over again.
ARGH!