Query/src/Query/Drivers/Pgsql/Util.php

102 lines
2.1 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\Pgsql;
2014-04-02 17:08:50 -04:00
/**
* Posgres-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()
{
// TODO Implement Backup function
return '';
}
// --------------------------------------------------------------------------
/**
* Create an SQL backup file for the current database's data
*
* @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 = '';
// Get the data for each object
foreach($tables as $t)
{
$sql = 'SELECT * FROM "'.trim($t).'"';
2014-04-24 13:42:01 -04:00
$res = $this->get_driver()->query($sql);
2014-04-02 17:08:50 -04:00
$obj_res = $res->fetchAll(\PDO::FETCH_ASSOC);
// Don't add to the file if the table is empty
2015-11-11 09:25:21 -05:00
if (count($obj_res) < 1)
{
continue;
}
$res = NULL;
// Nab the column names by getting the keys of the first row
$columns = @array_keys($obj_res[0]);
2016-09-07 13:10:03 -04:00
$insert_rows = [];
// Create the insert statements
foreach($obj_res as $row)
{
$row = array_values($row);
// Quote values as needed by type
2016-09-07 13:10:03 -04:00
$row = array_map([$this->get_driver(), 'quote'], $row);
$row = array_map('trim', $row);
$row_string = 'INSERT INTO "'.trim($t).'" ("'.implode('","', $columns).'") VALUES ('.implode(',', $row).');';
$row = NULL;
$insert_rows[] = $row_string;
}
$obj_res = NULL;
$output_sql .= "\n\n".implode("\n", $insert_rows)."\n";
}
return $output_sql;
}
}
2015-11-10 20:58:32 -05:00
// End of pgsql_util.php