I'm runnning a script that creates a few tables. I have line that drops the tables before the creation of the tables just in case they already exist ( such as on a re-creation of the tables ).
mysql is giving me the following error on the drop table when I run the script the first time -- i.e. when there isn't a table to drop yet. ERROR 1051 at line 1: Unknown table 'MyTable' Is there a global db setting that will allow this statement to occur without the error?