Jump to content

[SOLVED] drop table if exists question


dennismonsewicz

Recommended Posts

Can you drop a table that doesn't exist...

 

The IF EXISTS part is to throw an error. This is used mainly for development/installer scripts. Incase someone is re-installing or you dont want to alter your tables you can just drop the table if it exists then re-create it.

 

I use it all the time in my installer scripts.

Edit: Basically says the same as above ^^^

 

That syntax is used to prevent an error if the table does not exist when you try to drop it. Otherwise, you must first query to determine if it exists before you execute the DROP statement.

I know this topic is solved but I found this little function online that is a little more versatile.

 

function table_exists($table)
{
   $connection = mysql_connect($myinfo_host, $myinfo_user, $myinfo_pass) or die(mysql_error());
   mysql_select_db($myinfo_base, $connection) or die(mysql_error());
   if(!(mysql_query("SELECT * FROM $table")))
   {
      //what to do if table doesn't exist
   }
   mysql_close($connection);
}

I know this topic is solved but I found this little function online that is a little more versatile.

 

function table_exists($table)
{
   $connection = mysql_connect($myinfo_host, $myinfo_user, $myinfo_pass) or die(mysql_error());
   mysql_select_db($myinfo_base, $connection) or die(mysql_error());
   if(!(mysql_query("SELECT * FROM $table")))
   {
      //what to do if table doesn't exist
   }
   mysql_close($connection);
}

 

But why when DROP TABLE IF EXISTS is soo much simpler than doing that? lol

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.