2012-02-07 15:27:33 -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-02-29 14:36:42 -05:00
|
|
|
* SQLite Specific SQL
|
2012-02-07 15:27:33 -05:00
|
|
|
*/
|
2012-02-29 14:36:42 -05:00
|
|
|
class SQLite_SQL extends DB_SQL {
|
2012-02-07 15:27:33 -05:00
|
|
|
|
|
|
|
/**
|
2012-02-21 11:45:42 -05:00
|
|
|
* Convenience public function to create a new table
|
2012-02-07 15:27:33 -05:00
|
|
|
*
|
|
|
|
* @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 string
|
|
|
|
*/
|
2012-03-06 10:58:38 -05:00
|
|
|
public function create_table($name, $columns, array $constraints=array(), array $indexes=array())
|
2012-02-07 15:27:33 -05:00
|
|
|
{
|
|
|
|
$column_array = array();
|
|
|
|
|
|
|
|
// Reorganize into an array indexed with column information
|
|
|
|
// Eg $column_array[$colname] = array(
|
|
|
|
// 'type' => ...,
|
|
|
|
// 'constraint' => ...,
|
|
|
|
// 'index' => ...,
|
|
|
|
// )
|
|
|
|
foreach($columns as $colname => $type)
|
|
|
|
{
|
|
|
|
if(is_numeric($colname))
|
|
|
|
{
|
|
|
|
$colname = $type;
|
|
|
|
}
|
|
|
|
|
|
|
|
$column_array[$colname] = array();
|
|
|
|
$column_array[$colname]['type'] = ($type !== $colname) ? $type : '';
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ! empty($constraints))
|
|
|
|
{
|
|
|
|
foreach($constraints as $col => $const)
|
|
|
|
{
|
|
|
|
$column_array[$col]['constraint'] = $const;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-07 19:32:47 -05:00
|
|
|
// Join column definitons together
|
|
|
|
$columns = array();
|
2012-02-08 09:01:51 -05:00
|
|
|
foreach($column_array as $n => $props)
|
2012-02-07 15:27:33 -05:00
|
|
|
{
|
2012-02-08 09:01:51 -05:00
|
|
|
$str = "{$n} ";
|
2012-02-08 15:39:41 -05:00
|
|
|
$str .= (isset($props['type'])) ? "{$props['type']} " : "";
|
|
|
|
$str .= (isset($props['constraint'])) ? $props['constraint'] : "";
|
2012-02-07 19:32:47 -05:00
|
|
|
|
|
|
|
$columns[] = $str;
|
2012-02-07 15:27:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Generate the sql for the creation of the table
|
2012-02-28 16:02:37 -05:00
|
|
|
$sql = "CREATE TABLE IF NOT EXISTS \"{$name}\" (";
|
2012-02-28 12:28:56 -05:00
|
|
|
$sql .= implode(", ", $columns);
|
2012-02-07 15:27:33 -05:00
|
|
|
$sql .= ")";
|
2012-02-07 19:32:47 -05:00
|
|
|
|
|
|
|
return $sql;
|
2012-02-07 15:27:33 -05:00
|
|
|
}
|
|
|
|
|
2012-02-07 20:50:25 -05:00
|
|
|
/**
|
|
|
|
* SQL to drop the specified table
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @return string
|
|
|
|
*/
|
2012-02-21 11:45:42 -05:00
|
|
|
public function delete_table($name)
|
2012-02-07 20:50:25 -05:00
|
|
|
{
|
2012-02-21 11:45:42 -05:00
|
|
|
return 'DROP TABLE IF EXISTS "'.$name.'"';
|
2012-02-07 20:50:25 -05:00
|
|
|
}
|
|
|
|
|
2012-02-07 15:27:33 -05:00
|
|
|
/**
|
2012-02-29 18:33:21 -05:00
|
|
|
* Limit clause
|
|
|
|
*
|
|
|
|
* @param string $sql
|
|
|
|
* @param int $limit
|
|
|
|
* @param int $offset
|
|
|
|
* @return string
|
2012-02-07 15:27:33 -05:00
|
|
|
*/
|
2012-02-29 18:33:21 -05:00
|
|
|
public function limit($sql, $limit, $offset=FALSE)
|
2012-02-07 15:27:33 -05:00
|
|
|
{
|
2012-02-29 18:33:21 -05:00
|
|
|
if ( ! is_numeric($offset))
|
2012-02-07 15:27:33 -05:00
|
|
|
{
|
2012-02-29 18:33:21 -05:00
|
|
|
return $sql." LIMIT {$limit}";
|
2012-02-07 15:27:33 -05:00
|
|
|
}
|
2012-02-29 18:33:21 -05:00
|
|
|
|
|
|
|
return $sql." LIMIT {$offset}, {$limit}";
|
2012-02-07 15:27:33 -05:00
|
|
|
}
|
|
|
|
}
|
2012-02-29 14:36:42 -05:00
|
|
|
//End of sqlite_sql.php
|