2012-04-18 15:53:06 -04:00
|
|
|
<?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
|
2012-04-18 15:53:06 -04:00
|
|
|
* @link https://github.com/aviat4ion/Query
|
2012-04-20 13:17:39 -04:00
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
2012-04-18 15:53:06 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2014-04-24 15:32:09 -04:00
|
|
|
namespace Query\Driver\Util;
|
2014-04-02 17:08:50 -04:00
|
|
|
|
2012-04-18 15:53:06 -04:00
|
|
|
/**
|
|
|
|
* SQLite-specific backup, import and creation methods
|
2012-04-20 13:17:39 -04:00
|
|
|
*
|
|
|
|
* @package Query
|
|
|
|
* @subpackage Drivers
|
2014-03-17 20:20:53 -04:00
|
|
|
* @method mixed query(string $sql)
|
|
|
|
* @method string quote(string $str)
|
2012-04-18 15:53:06 -04:00
|
|
|
*/
|
2014-04-03 14:44:03 -04:00
|
|
|
class SQLite_Util extends Abstract_Util {
|
2012-04-18 15:53:06 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create an SQL backup file for the current database's data
|
|
|
|
*
|
|
|
|
* @param array $excluded
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function backup_data($excluded=array())
|
|
|
|
{
|
|
|
|
// 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\'';
|
2012-04-18 15:53:06 -04:00
|
|
|
|
|
|
|
if( ! empty($excluded))
|
|
|
|
{
|
2014-04-08 15:19:47 -04:00
|
|
|
$sql .= " AND \"name\" NOT IN('".implode("','", $excluded)."')";
|
2012-04-18 15:53:06 -04:00
|
|
|
}
|
|
|
|
|
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);
|
2012-04-18 15:53:06 -04:00
|
|
|
|
|
|
|
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);
|
2012-04-18 15:53:06 -04:00
|
|
|
|
|
|
|
unset($res);
|
2014-03-20 11:20:30 -04:00
|
|
|
|
2014-02-07 14:18:08 -05:00
|
|
|
// If the row is empty, continue;
|
|
|
|
if (empty($obj_res)) continue;
|
2012-04-18 15:53:06 -04:00
|
|
|
|
|
|
|
// Nab the column names by getting the keys of the first row
|
2014-02-07 14:18:08 -05:00
|
|
|
$columns = array_keys(current($obj_res));
|
2012-04-18 15:53:06 -04:00
|
|
|
|
|
|
|
$insert_rows = array();
|
|
|
|
|
|
|
|
// 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]);
|
2012-04-18 15:53:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$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);
|
2012-04-18 15:53:06 -04:00
|
|
|
|
|
|
|
$sql_array = array();
|
|
|
|
|
|
|
|
foreach($result as $r)
|
|
|
|
{
|
|
|
|
$sql_array[] = $r['sql'];
|
|
|
|
}
|
|
|
|
|
2014-02-07 14:18:08 -05:00
|
|
|
$sql_structure = implode(";\n", $sql_array) . ";";
|
2012-04-18 15:53:06 -04:00
|
|
|
|
|
|
|
return $sql_structure;
|
|
|
|
}
|
|
|
|
}
|
2014-02-07 14:18:08 -05:00
|
|
|
// End of sqlite_util.php
|