OpenSQLManager/src/databases/sqlite.php

120 lines
2.1 KiB
PHP

<?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
*/
// --------------------------------------------------------------------------
/**
* SQLite specific class
*
* @extends DB_PDO
*/
class SQLite extends DB_PDO {
/**
* Open SQLite Database
*
* @param string $dsn
*/
function __construct($dsn)
{
// DSN is simply `sqlite:/path/to/db`
parent::__construct("sqlite:{$dsn}");
}
/**
* Empty a table
*
* @param string $table
*/
function truncate($table)
{
// SQLite has a TRUNCATE optimization,
// but no support for the actual command.
$sql = "DELETE FROM {$table}";
$this->query($sql);
}
/**
* List tables for the current database
*
* @return mixed
*/
function get_tables()
{
$res = $this->query("SELECT name FROM sqlite_master WHERE type='table'");
return $res->fetchAll(PDO::FETCH_ASSOC);
}
/**
* Return the number of rows affected by the previous query
*
* @return int
*/
function affected_rows()
{
// TODO: Implement
}
/**
* Return the number of rows returned for a SELECT query
*
* @return int
*/
function num_rows()
{
// TODO: Implement
}
}
class SQLite_manip extends SQLite {
function __construct($dsn)
{
parent::__construct($dsn);
}
/**
* Convenience function to create a new table
*
* @param string $name //Name of the table
* @param array $columns //columns as straight array and/or column => type pairs
* @param array $constraints // column => constraint pairs
* @param array $indexes // column => index pairs
* @return srtring
*/
function create_table($name, $columns, $constraints, $indexes)
{
$sql = "CREATE TABLE {$name} (";
foreach($columns as $colname => $type)
{
if(is_numeric($colname))
{
$colname = $type;
}
}
}
/**
* Create an sqlite database file
*
* @param $path
*/
function create_db($path)
{
// Create the file if it doesn't exist
if( ! file_exists($path))
{
touch($path);
}
}
}