Query/src/Drivers/Sqlite/Util.php

117 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
*
2022-09-29 11:33:08 -04:00
* PHP version 8.1
2016-09-07 13:17:17 -04:00
*
* @package Query
2023-01-20 11:30:51 -05:00
* @author Timothy J. Warren <tim@timshome.page>
* @copyright 2012 - 2023 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
2023-03-17 16:34:21 -04:00
* @version 4.1.0
*/
2023-03-17 15:18:33 -04:00
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
*/
2023-03-17 15:18:33 -04:00
class Util extends AbstractUtil
{
/**
* Create an SQL backup file for the current database's data
*/
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\'';
2023-03-17 15:18:33 -04:00
if ( ! empty($excluded))
{
2023-03-17 15:18:33 -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
2023-03-17 15:18:33 -04:00
foreach ($result as $r)
{
2023-03-17 15:18:33 -04:00
$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
2023-03-17 15:18:33 -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]);
}
2023-03-17 15:18:33 -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);
2023-03-17 15:18:33 -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
*/
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 = [];
2023-03-17 15:18:33 -04:00
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) . ';';
}
2023-03-17 15:18:33 -04:00
}