Query/drivers/mysql/mysql_util.php

123 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
2014-01-02 12:36:50 -05:00
* @copyright Copyright (c) 2012 - 2014
* @link https://github.com/aviat4ion/Query
2012-04-20 13:17:39 -04:00
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
2014-04-02 17:08:50 -04:00
namespace Query\Driver;
/**
* MySQL-specific backup, import and creation methods
2012-04-20 13:17:39 -04:00
*
* @package Query
* @subpackage Drivers
2014-03-17 19:34:48 -04:00
* @method array get_dbs()
2014-03-17 19:52:43 -04:00
* @method mixed driver_query(string $sql, bool $filtered_index=TRUE)
2014-03-17 19:34:48 -04:00
* @method array get_system_tables()
* @method array get_tables()
* @method mixed query(string $sql)
* @method string quote(string $str)
*/
class MySQL_Util extends Abstract_Util {
/**
* Create an SQL backup file for the current database's structure
*
* @return string
*/
public function backup_structure()
{
2012-05-15 13:35:59 -04:00
$string = array();
// Get databases
2012-05-15 13:35:59 -04:00
$dbs = $this->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
if ($d == 'mysql') continue;
// Get the list of tables
2014-03-17 20:12:58 -04:00
$tables = $this->driver_query("SHOW TABLES FROM `{$d}`", TRUE);
2012-05-15 13:35:59 -04:00
foreach($tables as &$table)
2012-05-15 13:08:35 -04:00
{
2012-05-15 13:35:59 -04:00
$array = $this->driver_query("SHOW CREATE TABLE `{$d}`.`{$table}`", FALSE);
$string[] = $array[0]['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
*/
2012-04-18 16:28:12 -04:00
public function backup_data($exclude=array())
{
2012-04-18 16:28:12 -04:00
$tables = $this->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}`";
$res = $this->query($sql);
2014-04-02 17:08:50 -04:00
$rows = $res->fetchAll(\PDO::FETCH_ASSOC);
// Skip empty tables
if (count($rows) < 1) continue;
// Nab the column names by getting the keys of the first row
$columns = @array_keys($rows[0]);
$insert_rows = array();
// Create the insert statements
foreach($rows as $row)
{
$row = array_values($row);
// Workaround for Quercus
foreach($row as &$r)
{
$r = $this->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;
}
}
2014-01-02 12:36:50 -05:00
// End of mysql_util.php