2012-01-26 16:09:05 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* OpenSQLManager
|
|
|
|
*
|
|
|
|
* Free Database manager for Open Source Databases
|
|
|
|
*
|
|
|
|
* @author Timothy J. Warren
|
|
|
|
* @copyright Copyright (c) 2012
|
|
|
|
* @link https://github.com/aviat4ion/OpenSQLManager
|
2012-04-02 10:23:27 -04:00
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
2012-01-26 16:09:05 -05:00
|
|
|
*/
|
|
|
|
|
2012-01-30 07:57:17 -05:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
2012-04-02 10:23:27 -04:00
|
|
|
* SQLite specific class
|
2012-01-30 07:57:17 -05:00
|
|
|
*
|
|
|
|
* @extends DB_PDO
|
|
|
|
*/
|
|
|
|
class SQLite extends DB_PDO {
|
|
|
|
|
2012-02-23 08:59:27 -05:00
|
|
|
protected $statement;
|
|
|
|
|
2012-02-01 16:36:55 -05:00
|
|
|
/**
|
|
|
|
* Open SQLite Database
|
2012-04-02 10:23:27 -04:00
|
|
|
*
|
|
|
|
* @param string $dsn
|
2012-02-01 16:36:55 -05:00
|
|
|
*/
|
2012-02-28 12:28:56 -05:00
|
|
|
public function __construct($dsn, $user=NULL, $pass=NULL)
|
2012-01-30 07:57:17 -05:00
|
|
|
{
|
2012-02-01 16:36:55 -05:00
|
|
|
// DSN is simply `sqlite:/path/to/db`
|
2012-02-28 12:28:56 -05:00
|
|
|
parent::__construct("sqlite:{$dsn}", $user, $pass);
|
2012-02-08 09:01:51 -05:00
|
|
|
|
2012-02-29 14:36:42 -05:00
|
|
|
$class = __CLASS__."_sql";
|
|
|
|
$this->sql = new $class;
|
2012-01-30 07:57:17 -05:00
|
|
|
}
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 16:02:37 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2012-01-26 16:09:05 -05:00
|
|
|
|
2012-01-30 14:03:16 -05:00
|
|
|
/**
|
|
|
|
* Empty a table
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
*/
|
2012-02-21 11:45:42 -05:00
|
|
|
public function truncate($table)
|
2012-01-30 14:03:16 -05:00
|
|
|
{
|
2012-02-01 16:36:55 -05:00
|
|
|
// SQLite has a TRUNCATE optimization,
|
|
|
|
// but no support for the actual command.
|
2012-03-12 16:09:12 -04:00
|
|
|
$sql = 'DELETE FROM "'.$table.'"';
|
2012-02-13 13:29:31 -05:00
|
|
|
|
2012-03-12 16:09:12 -04:00
|
|
|
$this->statement = $this->query($sql);
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-03-12 16:09:12 -04:00
|
|
|
return $this->statement;
|
2012-01-30 14:03:16 -05:00
|
|
|
}
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 16:02:37 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2012-01-30 14:03:16 -05:00
|
|
|
|
2012-02-02 17:43:09 -05:00
|
|
|
/**
|
2012-02-02 19:07:26 -05:00
|
|
|
* List tables for the current database
|
2012-04-02 10:23:27 -04:00
|
|
|
*
|
2012-02-02 17:43:09 -05:00
|
|
|
* @return mixed
|
|
|
|
*/
|
2012-02-21 11:45:42 -05:00
|
|
|
public function get_tables()
|
2012-04-02 10:23:27 -04:00
|
|
|
{
|
2012-02-08 09:01:51 -05:00
|
|
|
$tables = array();
|
2012-02-13 13:29:31 -05:00
|
|
|
$sql = <<<SQL
|
2012-04-02 10:23:27 -04:00
|
|
|
SELECT "name", "sql"
|
|
|
|
FROM "sqlite_master"
|
2012-02-23 08:59:27 -05:00
|
|
|
WHERE "type"='table'
|
2012-02-13 13:10:48 -05:00
|
|
|
SQL;
|
2012-02-13 13:29:31 -05:00
|
|
|
|
2012-02-13 13:10:48 -05:00
|
|
|
$res = $this->query($sql);
|
2012-02-08 09:01:51 -05:00
|
|
|
$result = $res->fetchAll(PDO::FETCH_ASSOC);
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-08 09:01:51 -05:00
|
|
|
foreach($result as $r)
|
|
|
|
{
|
2012-04-02 10:23:27 -04:00
|
|
|
$tables[] = $r['name'];
|
2012-02-08 09:01:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return $tables;
|
2012-02-06 16:56:16 -05:00
|
|
|
}
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 16:02:37 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2012-02-06 16:56:16 -05:00
|
|
|
|
2012-04-03 11:23:53 -04:00
|
|
|
/**
|
2012-04-04 10:47:14 -04:00
|
|
|
* Not applicable to SQLite
|
2012-04-03 11:23:53 -04:00
|
|
|
*
|
|
|
|
* @return FALSE
|
|
|
|
*/
|
|
|
|
public function get_dbs()
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2012-04-04 10:47:14 -04:00
|
|
|
/**
|
|
|
|
* Get list of views for the current database
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function get_views()
|
|
|
|
{
|
|
|
|
// @todo Implement
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2012-02-13 13:10:48 -05:00
|
|
|
/**
|
|
|
|
* List system tables for the current database
|
2012-04-02 10:23:27 -04:00
|
|
|
*
|
2012-02-13 13:10:48 -05:00
|
|
|
* @return array
|
|
|
|
*/
|
2012-02-21 11:45:42 -05:00
|
|
|
public function get_system_tables()
|
2012-02-10 13:13:19 -05:00
|
|
|
{
|
2012-02-13 13:46:53 -05:00
|
|
|
//SQLite only has the sqlite_master table
|
|
|
|
// that is of any importance.
|
|
|
|
return array('sqlite_master');
|
2012-02-13 13:10:48 -05:00
|
|
|
}
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 16:02:37 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2012-02-13 13:10:48 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Load a database for the current connection
|
2012-04-02 10:23:27 -04:00
|
|
|
*
|
2012-02-13 13:10:48 -05:00
|
|
|
* @param string $db
|
2012-04-02 10:23:27 -04:00
|
|
|
* @param string $name
|
2012-02-13 13:10:48 -05:00
|
|
|
*/
|
2012-02-21 11:45:42 -05:00
|
|
|
public function load_database($db, $name)
|
2012-02-13 13:10:48 -05:00
|
|
|
{
|
2012-02-28 22:07:13 -05:00
|
|
|
$sql = 'ATTACH DATABASE "'.$db.'" AS "'.$name.'"';
|
2012-02-13 13:10:48 -05:00
|
|
|
$this->query($sql);
|
|
|
|
}
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 16:02:37 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2012-02-13 13:10:48 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Unload a database from the current connection
|
2012-04-02 10:23:27 -04:00
|
|
|
*
|
2012-02-13 13:10:48 -05:00
|
|
|
* @param string $name
|
|
|
|
*/
|
2012-02-21 11:45:42 -05:00
|
|
|
public function unload_database($name)
|
2012-02-13 13:10:48 -05:00
|
|
|
{
|
2012-02-23 08:59:27 -05:00
|
|
|
$sql = 'DETACH DATABASE ":name"';
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-23 08:59:27 -05:00
|
|
|
$this->prepare_query($sql, array(
|
|
|
|
':name' => $name,
|
|
|
|
));
|
2012-02-23 20:10:13 -05:00
|
|
|
|
|
|
|
$this->statement->execute();
|
2012-02-10 13:13:19 -05:00
|
|
|
}
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 16:02:37 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2012-02-10 13:13:19 -05:00
|
|
|
|
2012-02-06 16:56:16 -05:00
|
|
|
/**
|
|
|
|
* Return the number of rows returned for a SELECT query
|
2012-04-02 10:23:27 -04:00
|
|
|
*
|
2012-02-06 16:56:16 -05:00
|
|
|
* @return int
|
|
|
|
*/
|
2012-02-21 11:45:42 -05:00
|
|
|
public function num_rows()
|
2012-02-06 16:56:16 -05:00
|
|
|
{
|
2012-02-23 08:59:27 -05:00
|
|
|
return (isset($this->statement)) ? $this->statement->rowCount : FALSE;
|
2012-02-02 17:43:09 -05:00
|
|
|
}
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 16:02:37 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 16:02:37 -05:00
|
|
|
/**
|
|
|
|
* Create an SQL backup file for the current database's structure
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function backup_structure()
|
|
|
|
{
|
2012-02-28 16:15:31 -05:00
|
|
|
// Fairly easy for SQLite...just query the master table
|
|
|
|
$sql = 'SELECT "sql" FROM "sqlite_master"';
|
|
|
|
$res = $this->query($sql);
|
|
|
|
$result = $res->fetchAll(PDO::FETCH_ASSOC);
|
|
|
|
|
|
|
|
$sql_array = array();
|
|
|
|
|
|
|
|
foreach($result as $r)
|
|
|
|
{
|
|
|
|
$sql_array[] = $r['sql'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$sql_structure = implode("\n\n", $sql_array);
|
2012-04-02 10:23:27 -04:00
|
|
|
|
|
|
|
return $sql_structure;
|
2012-02-28 16:02:37 -05:00
|
|
|
}
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 16:02:37 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 16:02:37 -05:00
|
|
|
/**
|
|
|
|
* Create an SQL backup file for the current database's data
|
|
|
|
*
|
2012-02-28 20:44:14 -05:00
|
|
|
* @param array $excluded
|
2012-02-28 16:02:37 -05:00
|
|
|
* @return string
|
|
|
|
*/
|
2012-02-28 20:44:14 -05:00
|
|
|
public function backup_data($excluded=array())
|
2012-02-28 16:02:37 -05:00
|
|
|
{
|
2012-02-28 17:44:34 -05:00
|
|
|
// Get a list of all the objects
|
|
|
|
$sql = 'SELECT "name" FROM "sqlite_master"';
|
2012-02-28 20:44:14 -05:00
|
|
|
|
|
|
|
if( ! empty($excluded))
|
|
|
|
{
|
|
|
|
$sql .= ' WHERE NOT IN("'.implode('","', $excluded).'")';
|
|
|
|
}
|
|
|
|
|
2012-02-28 17:44:34 -05:00
|
|
|
$res = $this->query($sql);
|
|
|
|
$result = $res->fetchAll(PDO::FETCH_ASSOC);
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 17:44:34 -05:00
|
|
|
unset($res);
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 17:44:34 -05:00
|
|
|
$output_sql = '';
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 17:44:34 -05:00
|
|
|
// Get the data for each object
|
|
|
|
foreach($result as $r)
|
|
|
|
{
|
|
|
|
$sql = 'SELECT * FROM "'.$r['name'].'"';
|
|
|
|
$res = $this->query($sql);
|
|
|
|
$obj_res = $res->fetchAll(PDO::FETCH_ASSOC);
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 17:44:34 -05:00
|
|
|
unset($res);
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 17:44:34 -05:00
|
|
|
// Nab the column names by getting the keys of the first row
|
|
|
|
$columns = array_keys($obj_res[0]);
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 17:44:34 -05:00
|
|
|
$insert_rows = array();
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 17:44:34 -05:00
|
|
|
// Create the insert statements
|
|
|
|
foreach($obj_res as $row)
|
|
|
|
{
|
|
|
|
$row = array_values($row);
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 17:44:34 -05:00
|
|
|
// Quote values as needed by type
|
|
|
|
for($i=0, $icount=count($row); $i<$icount; $i++)
|
|
|
|
{
|
|
|
|
$row[$i] = (is_numeric($row[$i])) ? $row[$i] : $this->quote($row[$i]);
|
|
|
|
}
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 17:44:34 -05:00
|
|
|
$row_string = 'INSERT INTO "'.$r['name'].'" ("'.implode('","', $columns).'") VALUES ('.implode(',', $row).');';
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 17:44:34 -05:00
|
|
|
unset($row);
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 17:44:34 -05:00
|
|
|
$insert_rows[] = $row_string;
|
|
|
|
}
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 17:44:34 -05:00
|
|
|
unset($obj_res);
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 20:44:14 -05:00
|
|
|
$output_sql .= "\n\n".implode("\n", $insert_rows);
|
2012-02-28 17:44:34 -05:00
|
|
|
}
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 17:44:34 -05:00
|
|
|
return $output_sql;
|
2012-02-28 16:02:37 -05:00
|
|
|
}
|
2012-02-02 17:43:09 -05:00
|
|
|
}
|
2012-02-07 15:27:33 -05:00
|
|
|
//End of sqlite.php
|