MySQL
  Home arrow MySQL arrow Page 4 - MySQL Table Prefix Changer Tool in PHP
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
VPS Hosting  
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid  
Request Media Kit
Contact Us  
Site Map  
Privacy Policy  
Support  
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
MYSQL

MySQL Table Prefix Changer Tool in PHP
By: Nilpo
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 18
    2008-01-02


    Table of Contents:
  • MySQL Table Prefix Changer Tool in PHP
  • Constructing the tool
  • Editing your current database tables
  • Putting the database back together

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article

     
     
    ADVERTISEMENT


    MySQL Table Prefix Changer Tool in PHP - Putting the database back together
    ( Page 4 of 4 )

    At this point in execution we are left with an array full of table names that have been reconstructed using the new table prefix. Now we need to write that information back to our database.

    // Write new table names back

    foreach ($table_array as $key => $value) {

       $query = sprintf('RENAME TABLE %s TO %s', $table_array[$key], $table_names
    [$key]);

       $result = mysql_query($query, $link);

       if (!$result) {

           $error = mysql_error();

           echo "Could not $query : $error<br>";

       } else {

           $message = sprintf('Successfully renamed %s to %s in %s', $table_array
    [$key], $table_names[$key], $mysql_db);

           echo "$message<br>";

       }

    }

    To do that, we will use a Foreach loop to iterate through each of our array elements. Then it’s just a matter of forming a query that renames the table. Now you can see why we created a duplicate array with our new table names instead of simply editing the existing one.

    We have two side-by-side arrays: one with old names and one with new, in the same order.  By moving through each of them at the same time we can get the old and new table names without ever having to know how many tables we’re even working with.

    // Free the resources

    mysql_close($link);

    }

    All of the dirty work is done. All that’s left is to close our database connection and create the replace_prefix() function that actually determines the new table names for us.

    function replace_prefix($s, $prefix) {

       $pos = strpos($s, "_");

       $s = substr($s, $pos + 1);

       $s = sprintf("%s_%s", $prefix, $s);

       return $s;

    }

    ?>

    Our custom replace_prefix() function is actually pretty simple. It accepts two parameters: the original table name and the new prefix. A few simple string functions parse out the old prefix and replace it with the new.

    Voilà! We’re all done.  Save this with a .php extension and upload it to your web server.  Access your script in your web browser to see it in action. Do not forget to update your site’s configuration settings with the new table prefix information BEFORE running this script; otherwise, you may not be able to access it afterward.



     
     
    >>> More MySQL Articles          >>> More By Nilpo
     

       

    MYSQL ARTICLES

    - Null and Empty Strings
    - MySQL Server Tuning Tips and Tricks
    - MySQL Query Optimizations and Schema Design
    - MySQL Benchmarking Tools and Utilities
    - MySQL Benchmarking Concepts and Strategies
    - Take Some Load off MySQL with MemCached
    - MySQL Table Prefix Changer Tool in PHP
    - Using the SIGNAL Statement for Error Handling
    - Error Handling Examples
    - Error Handling
    - Completing a Search Engine with MySQL and PH...
    - Paginating Result Sets for a Search Engine B...
    - Building a Search Engine with MySQL and PHP 5
    - Using Boolean Operators for Full Text and Bo...
    - PHP, MySQL and the PEAR Database





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 2 hosted by Hostway
    Stay green...Green IT