Query/src/Drivers/Sqlite/Util.php

120 lines
2.5 KiB
PHP
Raw Normal View History

2016-10-12 22:12:25 -04:00
<?php declare(strict_types=1);
/**
* Query
*
2016-09-07 13:17:17 -04:00
* SQL Query Builder / Database Abstraction Layer
*
2020-04-10 20:54:31 -04:00
* PHP version 7.4
2016-09-07 13:17:17 -04:00
*
* @package Query
* @author Timothy J. Warren <tim@timshomepage.net>
2020-03-18 11:31:56 -04:00
* @copyright 2012 - 2020 Timothy J. Warren
2016-09-07 13:17:17 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2019-12-11 16:49:42 -05:00
* @link https://git.timshomepage.net/aviat/Query
* @version 3.0.0
*/
namespace Query\Drivers\Sqlite;
2014-04-02 17:08:50 -04:00
2016-10-13 21:55:23 -04:00
use PDO;
2016-09-07 17:39:19 -04:00
use Query\Drivers\AbstractUtil;
/**
* SQLite-specific backup, import and creation methods
*/
2016-09-07 17:39:19 -04:00
class Util extends AbstractUtil {
/**
* Create an SQL backup file for the current database's data
*
* @param array $excluded
* @return string
*/
2018-01-22 15:43:56 -05:00
public function backupData(array $excluded=[]): string
{
// 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)."')";
}
2016-10-13 21:55:23 -04:00
$res = $this->getDriver()->query($sql);
$result = $res->fetchAll(PDO::FETCH_ASSOC);
unset($res);
2016-10-13 21:55:23 -04:00
$outputSql = '';
// Get the data for each object
foreach($result as $r)
{
$sql = 'SELECT * FROM "'.$r['name'].'"';
2016-10-13 21:55:23 -04:00
$res = $this->getDriver()->query($sql);
$objRes = $res->fetchAll(PDO::FETCH_ASSOC);
unset($res);
// If the row is empty, continue
2016-10-13 21:55:23 -04:00
if (empty($objRes))
2015-11-11 09:25:21 -05:00
{
continue;
}
// Nab the column names by getting the keys of the first row
2016-10-13 21:55:23 -04:00
$columns = array_keys(current($objRes));
2016-10-13 21:55:23 -04:00
$insertRows = [];
// Create the insert statements
2016-10-13 21:55:23 -04:00
foreach($objRes as $row)
{
$row = array_values($row);
// Quote values as needed by type
2019-12-11 16:49:06 -05:00
foreach ($row as $i => $_)
{
2019-12-11 16:49:06 -05:00
$row[$i] = (is_numeric($row[$i]))
? $row[$i]
: $this->getDriver()->quote($row[$i]);
}
2016-10-13 21:55:23 -04:00
$rowString = 'INSERT INTO "'.$r['name'].'" ("'.implode('","', $columns).'") VALUES ('.implode(',', $row).');';
unset($row);
2016-10-13 21:55:23 -04:00
$insertRows[] = $rowString;
}
2016-10-13 21:55:23 -04:00
unset($objRes);
2016-10-13 21:55:23 -04:00
$outputSql .= "\n\n".implode("\n", $insertRows);
}
2016-10-13 21:55:23 -04:00
return $outputSql;
}
/**
* Create an SQL backup file for the current database's structure
*
* @return string
*/
2018-01-22 15:43:56 -05:00
public function backupStructure(): string
{
// Fairly easy for SQLite...just query the master table
$sql = 'SELECT "sql" FROM "sqlite_master"';
2016-10-13 21:55:23 -04:00
$res = $this->getDriver()->query($sql);
$result = $res->fetchAll(PDO::FETCH_ASSOC);
2016-10-13 21:55:23 -04:00
$sqlArray = [];
foreach($result as $r)
{
2016-10-13 21:55:23 -04:00
$sqlArray[] = $r['sql'];
}
2019-12-11 16:49:06 -05:00
return implode(";\n", $sqlArray) . ';';
}
2016-10-13 21:55:23 -04:00
}