Query/src/Query/Drivers/Mysql/Util.php

130 lines
2.6 KiB
PHP
Raw Normal View History

<?php
/**
* Query
*
* Free Query Builder / Database Abstraction Layer
*
2012-04-20 13:17:39 -04:00
* @package Query
* @author Timothy J. Warren
2015-11-10 20:58:32 -05:00
* @copyright Copyright (c) 2012 - 2015
* @link https://github.com/aviat4ion/Query
2012-04-20 13:17:39 -04:00
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
namespace Query\Drivers\Mysql;
2014-04-02 17:08:50 -04:00
/**
* MySQL-specific backup, import and creation methods
2012-04-20 13:17:39 -04:00
*
* @package Query
* @subpackage Drivers
*/
2015-11-10 10:12:23 -05:00
class Util extends \Query\AbstractUtil {
/**
* Create an SQL backup file for the current database's structure
*
* @return string
*/
public function backup_structure()
{
2016-09-07 13:10:03 -04:00
$string = [];
// Get databases
2014-04-24 13:42:01 -04:00
$dbs = $this->get_driver()->get_dbs();
2012-05-15 13:08:35 -04:00
foreach($dbs as &$d)
{
2012-05-15 13:35:59 -04:00
// Skip built-in dbs
2015-11-11 09:25:21 -05:00
if ($d == 'mysql')
{
continue;
}
// Get the list of tables
2014-04-24 13:42:01 -04:00
$tables = $this->get_driver()->driver_query("SHOW TABLES FROM `{$d}`", TRUE);
2014-04-08 17:13:41 -04:00
foreach($tables as $table)
2012-05-15 13:08:35 -04:00
{
2014-04-24 13:42:01 -04:00
$array = $this->get_driver()->driver_query("SHOW CREATE TABLE `{$d}`.`{$table}`", FALSE);
2014-04-08 17:13:41 -04:00
$row = current($array);
2015-11-11 09:25:21 -05:00
if ( ! isset($row['Create Table']))
{
continue;
}
2014-04-08 17:13:41 -04:00
$string[] = $row['Create Table'];
2012-05-15 13:08:35 -04:00
}
}
2012-05-15 13:35:59 -04:00
return implode("\n\n", $string);
}
// --------------------------------------------------------------------------
/**
* Create an SQL backup file for the current database's data
*
2012-04-18 16:28:12 -04:00
* @param array $exclude
* @return string
*/
2016-09-07 13:10:03 -04:00
public function backup_data($exclude=[])
{
2014-04-24 13:42:01 -04:00
$tables = $this->get_driver()->get_tables();
// Filter out the tables you don't want
if( ! empty($exclude))
{
$tables = array_diff($tables, $exclude);
}
$output_sql = '';
// Select the rows from each Table
foreach($tables as $t)
{
$sql = "SELECT * FROM `{$t}`";
2014-04-24 13:42:01 -04:00
$res = $this->get_driver()->query($sql);
2014-04-02 17:08:50 -04:00
$rows = $res->fetchAll(\PDO::FETCH_ASSOC);
// Skip empty tables
2015-11-11 09:25:21 -05:00
if (count($rows) < 1)
{
continue;
}
// Nab the column names by getting the keys of the first row
$columns = @array_keys($rows[0]);
2016-09-07 13:10:03 -04:00
$insert_rows = [];
// Create the insert statements
foreach($rows as $row)
{
$row = array_values($row);
// Workaround for Quercus
foreach($row as &$r)
{
2014-04-24 13:42:01 -04:00
$r = $this->get_driver()->quote($r);
}
$row = array_map('trim', $row);
$row_string = 'INSERT INTO `'.trim($t).'` (`'.implode('`,`', $columns).'`) VALUES ('.implode(',', $row).');';
$row = NULL;
$insert_rows[] = $row_string;
}
$output_sql .= "\n\n".implode("\n", $insert_rows)."\n";
}
return $output_sql;
}
}
2015-11-10 20:58:32 -05:00
// End of mysql_util.php