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
|
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
|
|
|
*/
|
|
|
|
|
2012-01-30 07:57:17 -05:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SQLite specific class
|
|
|
|
*
|
|
|
|
* @extends DB_PDO
|
|
|
|
*/
|
|
|
|
class SQLite extends DB_PDO {
|
|
|
|
|
2012-02-01 16:36:55 -05:00
|
|
|
/**
|
|
|
|
* Open SQLite Database
|
|
|
|
*
|
|
|
|
* @param string $dsn
|
|
|
|
*/
|
2012-01-30 07:57:17 -05:00
|
|
|
function __construct($dsn)
|
|
|
|
{
|
2012-02-01 16:36:55 -05:00
|
|
|
// DSN is simply `sqlite:/path/to/db`
|
|
|
|
parent::__construct("sqlite:{$dsn}");
|
2012-02-08 09:01:51 -05:00
|
|
|
|
|
|
|
$class = __CLASS__."_manip";
|
|
|
|
$this->manip = new $class;
|
2012-01-30 07:57:17 -05:00
|
|
|
}
|
2012-01-26 16:09:05 -05:00
|
|
|
|
2012-01-30 14:03:16 -05:00
|
|
|
/**
|
|
|
|
* Empty a table
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
*/
|
|
|
|
function truncate($table)
|
|
|
|
{
|
2012-02-01 16:36:55 -05:00
|
|
|
// SQLite has a TRUNCATE optimization,
|
|
|
|
// but no support for the actual command.
|
2012-02-13 13:29:31 -05:00
|
|
|
$sql = <<<SQL
|
|
|
|
DELETE FROM "{$table}"
|
2012-02-13 13:10:48 -05:00
|
|
|
SQL;
|
2012-02-13 13:29:31 -05:00
|
|
|
|
2012-02-01 16:36:55 -05:00
|
|
|
$this->query($sql);
|
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-02-02 17:43:09 -05:00
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2012-02-02 19:07:26 -05:00
|
|
|
function get_tables()
|
2012-02-02 17:43:09 -05:00
|
|
|
{
|
2012-02-08 09:01:51 -05:00
|
|
|
$tables = array();
|
2012-02-13 13:29:31 -05:00
|
|
|
$sql = <<<SQL
|
|
|
|
SELECT "name", "sql" FROM "sqlite_master" 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);
|
|
|
|
|
|
|
|
foreach($result as $r)
|
|
|
|
{
|
|
|
|
$tables[$r['name']] = $r['sql'];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $tables;
|
2012-02-06 16:56:16 -05:00
|
|
|
}
|
|
|
|
|
2012-02-13 13:10:48 -05:00
|
|
|
/**
|
|
|
|
* List system tables for the current database
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
2012-02-10 13:13:19 -05:00
|
|
|
function get_system_tables()
|
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load a database for the current connection
|
|
|
|
*
|
|
|
|
* @param string $db
|
|
|
|
* @param string $name
|
|
|
|
*/
|
|
|
|
function load_database($db, $name)
|
|
|
|
{
|
2012-02-13 13:29:31 -05:00
|
|
|
$sql = <<<SQL
|
2012-02-13 13:10:48 -05:00
|
|
|
ATTACH DATABASE '{$db}' AS "{$name}"
|
|
|
|
SQL;
|
|
|
|
$this->query($sql);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unload a database from the current connection
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
*/
|
|
|
|
function unload_database($name)
|
|
|
|
{
|
2012-02-13 13:29:31 -05:00
|
|
|
$sql = <<<SQL
|
|
|
|
DETACH DATABASE "{$name}"
|
2012-02-13 13:10:48 -05:00
|
|
|
SQL;
|
|
|
|
$this->query($sql);
|
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
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
function num_rows()
|
|
|
|
{
|
2012-02-13 16:06:07 -05:00
|
|
|
return (isset($this->statement)) ? $this->statment->rowCount : FALSE;
|
2012-02-02 17:43:09 -05:00
|
|
|
}
|
|
|
|
}
|
2012-02-07 15:27:33 -05:00
|
|
|
//End of sqlite.php
|