Query/src/Query/Drivers/Sqlite/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
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\Sqlite;
2014-04-02 17:08:50 -04:00
/**
* SQLite-specific backup, import and creation methods
2012-04-20 13:17:39 -04:00
*
* @package Query
* @subpackage Drivers
* @method mixed query(string $sql)
* @method string quote(string $str)
*/
2015-11-10 10:12:23 -05:00
class Util extends \Query\AbstractUtil {
/**
* Create an SQL backup file for the current database's data
*
* @param array $excluded
* @return string
*/
2016-09-07 13:10:03 -04:00
public function backup_data($excluded=[])
{
// Get a list of all the objects
2014-04-08 15:19:47 -04:00
$sql = 'SELECT DISTINCT "name"
FROM "sqlite_master"
WHERE "type"=\'table\'';
if( ! empty($excluded))
{
2014-04-08 15:19:47 -04:00
$sql .= " AND \"name\" NOT IN('".implode("','", $excluded)."')";
}
2014-04-24 13:42:01 -04:00
$res = $this->get_driver()->query($sql);
2014-04-02 17:08:50 -04:00
$result = $res->fetchAll(\PDO::FETCH_ASSOC);
unset($res);
$output_sql = '';
// Get the data for each object
foreach($result as $r)
{
$sql = 'SELECT * FROM "'.$r['name'].'"';
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);
unset($res);
// If the row is empty, continue;
2015-11-11 09:25:21 -05:00
if (empty($obj_res))
{
continue;
}
// Nab the column names by getting the keys of the first row
$columns = array_keys(current($obj_res));
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
for($i=0, $icount=count($row); $i<$icount; $i++)
{
2014-04-24 13:42:01 -04:00
$row[$i] = (is_numeric($row[$i])) ? $row[$i] : $this->get_driver()->quote($row[$i]);
}
$row_string = 'INSERT INTO "'.$r['name'].'" ("'.implode('","', $columns).'") VALUES ('.implode(',', $row).');';
unset($row);
$insert_rows[] = $row_string;
}
unset($obj_res);
$output_sql .= "\n\n".implode("\n", $insert_rows);
}
return $output_sql;
}
// --------------------------------------------------------------------------
/**
* Create an SQL backup file for the current database's structure
*
* @return string
*/
public function backup_structure()
{
// Fairly easy for SQLite...just query the master table
$sql = 'SELECT "sql" FROM "sqlite_master"';
2014-04-24 13:42:01 -04:00
$res = $this->get_driver()->query($sql);
2014-04-02 17:08:50 -04:00
$result = $res->fetchAll(\PDO::FETCH_ASSOC);
2016-09-07 13:10:03 -04:00
$sql_array = [];
foreach($result as $r)
{
$sql_array[] = $r['sql'];
}
return implode(";\n", $sql_array) . ";";
}
}
// End of sqlite_util.php