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.

Link to comment
Share on other sites

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);
}

Link to comment
Share on other sites

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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.