码迷,mamicode.com
首页 > 数据库 > 详细

利用PHP脚本辅助MySQL数据库管理4-两个库表结构差异比较

时间:2018-05-05 13:27:51      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:bsp   ble   AC   struct   describe   mysql   sql   array   dbi   

<?php
define(‘DATABASE1‘, ‘coffeetest‘);
$dbi1 = new DbMysql;
$dbi1->dbh = ‘mysql://root:mysql@127.0.0.1/‘.DATABASE1;

define(‘DATABASE2‘, ‘sinatest‘);
$dbi2 = new DbMysql;
$dbi2->dbh = ‘mysql://root:mysql@127.0.0.1/‘.DATABASE2;


// db1
$db1 = array();
$map = array();
$dbi1->fetchMap("SHOW TABLES", $map);
$tables = array_keys($map);
for($i=0; $i<count($tables); $i++){
    $map = array();
    $dbi1->fetchMap("DESCRIBE ".$tables[$i], $map);
    $structures = array();
    foreach($map as $k=>$v){
        $structures[] = "$k=$v";
    }
    $db1[$tables[$i]] = $structures;
}

// db2
$db2 = array();
$map = array();
$dbi2->fetchMap("SHOW TABLES", $map);
$tables = array_keys($map);
for($i=0; $i<count($tables); $i++){
    $map = array();
    $dbi2->fetchMap("DESCRIBE ".$tables[$i], $map);
    $structures = array();
    foreach($map as $k=>$v){
        $structures[] = "$k=$v";
    }
    $db2[$tables[$i]] = $structures;
}

// db1 compare db2
echo("***** ".DATABASE1." *****\n");
foreach($db2 as $table=>$structures2){
    $structures1 = $db1[$table];
    if(empty($structures1)) {
        echo(".$table not exist\n");
        continue;
    }
    for($i=0; $i<count($structures2); $i++){
        if(1==1 && !in_array($structures2[$i], $structures1))
            echo $table.".".$structures2[$i]."\n";
    }
}

// db2 compare db1
echo("***** ".DATABASE2." *****\n");
foreach($db1 as $table=>$structures1){
    $structures2 = $db2[$table];
    if(empty($structures2)) {
        echo(DATABASE2.".$table not exist\n");
        continue;
    }
    for($i=0; $i<count($structures1); $i++){
        if(1==0 && !in_array($structures1[$i], $structures2))
            echo $table.".".$structures1[$i]."\n";
    }
}
?>

 

利用PHP脚本辅助MySQL数据库管理4-两个库表结构差异比较

标签:bsp   ble   AC   struct   describe   mysql   sql   array   dbi   

原文地址:https://www.cnblogs.com/coffee_cn/p/8994343.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!