2012-04-10 14:06:34 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Query
|
|
|
|
*
|
|
|
|
* Free Query Builder / Database Abstraction Layer
|
|
|
|
*
|
2012-04-20 13:17:39 -04:00
|
|
|
* @package Query
|
|
|
|
* @author Timothy J. Warren
|
2013-01-02 14:26:42 -05:00
|
|
|
* @copyright Copyright (c) 2012 - 2013
|
2012-04-10 14:06:34 -04:00
|
|
|
* @link https://github.com/aviat4ion/Query
|
2012-04-20 13:17:39 -04:00
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
2012-04-10 14:06:34 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SQLite Specific SQL
|
2012-04-20 13:17:39 -04:00
|
|
|
*
|
|
|
|
* @package Query
|
|
|
|
* @subpackage Drivers
|
2012-04-10 14:06:34 -04:00
|
|
|
*/
|
2012-12-18 16:19:52 -05:00
|
|
|
class SQLite_SQL implements iDB_SQL {
|
2012-04-10 14:06:34 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Limit clause
|
|
|
|
*
|
|
|
|
* @param string $sql
|
|
|
|
* @param int $limit
|
|
|
|
* @param int $offset
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function limit($sql, $limit, $offset=FALSE)
|
|
|
|
{
|
|
|
|
if ( ! is_numeric($offset))
|
|
|
|
{
|
|
|
|
return $sql." LIMIT {$limit}";
|
|
|
|
}
|
|
|
|
|
|
|
|
return $sql." LIMIT {$offset}, {$limit}";
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Random ordering keyword
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function random()
|
|
|
|
{
|
|
|
|
return ' RANDOM()';
|
|
|
|
}
|
2012-04-18 15:53:06 -04:00
|
|
|
|
2012-04-10 14:06:34 -04:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns sql to list other databases
|
|
|
|
*
|
2013-05-01 15:59:23 -04:00
|
|
|
* @return NULL
|
2012-04-10 14:06:34 -04:00
|
|
|
*/
|
|
|
|
public function db_list()
|
|
|
|
{
|
2013-05-01 15:59:23 -04:00
|
|
|
return NULL;
|
2012-04-10 14:06:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns sql to list tables
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function table_list()
|
|
|
|
{
|
|
|
|
return <<<SQL
|
|
|
|
SELECT "name"
|
|
|
|
FROM "sqlite_master"
|
|
|
|
WHERE "type"='table'
|
|
|
|
ORDER BY "name" DESC
|
|
|
|
SQL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Overridden in SQLite class
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function system_table_list()
|
|
|
|
{
|
2013-05-01 15:59:23 -04:00
|
|
|
return NULL;
|
2012-04-10 14:06:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns sql to list views
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function view_list()
|
|
|
|
{
|
|
|
|
return <<<SQL
|
|
|
|
SELECT "name" FROM "sqlite_master" WHERE "type" = 'view'
|
|
|
|
SQL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns sql to list triggers
|
|
|
|
*
|
2013-05-01 15:59:23 -04:00
|
|
|
* @return NULL
|
2012-04-10 14:06:34 -04:00
|
|
|
*/
|
|
|
|
public function trigger_list()
|
|
|
|
{
|
2013-05-01 15:59:23 -04:00
|
|
|
return NULL;
|
2012-04-10 14:06:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return sql to list functions
|
|
|
|
*
|
2013-05-01 15:59:23 -04:00
|
|
|
* @return NULL
|
2012-04-10 14:06:34 -04:00
|
|
|
*/
|
|
|
|
public function function_list()
|
|
|
|
{
|
2013-05-01 15:59:23 -04:00
|
|
|
return NULL;
|
2012-04-10 14:06:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return sql to list stored procedures
|
|
|
|
*
|
2013-05-01 15:59:23 -04:00
|
|
|
* @return NULL
|
2012-04-10 14:06:34 -04:00
|
|
|
*/
|
|
|
|
public function procedure_list()
|
|
|
|
{
|
2013-05-01 15:59:23 -04:00
|
|
|
return NULL;
|
2012-04-10 14:06:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return sql to list sequences
|
|
|
|
*
|
2013-05-01 15:59:23 -04:00
|
|
|
* @return NULL
|
2012-04-10 14:06:34 -04:00
|
|
|
*/
|
|
|
|
public function sequence_list()
|
|
|
|
{
|
2013-05-01 15:59:23 -04:00
|
|
|
return NULL;
|
2012-04-10 14:06:34 -04:00
|
|
|
}
|
2012-05-07 16:05:51 -04:00
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SQL to show list of field types
|
|
|
|
*
|
2012-05-08 08:31:57 -04:00
|
|
|
* @return array
|
2012-05-07 16:05:51 -04:00
|
|
|
*/
|
|
|
|
public function type_list()
|
|
|
|
{
|
2012-05-08 08:31:57 -04:00
|
|
|
return array('INTEGER', 'REAL', 'TEXT', 'BLOB');
|
2012-05-07 16:05:51 -04:00
|
|
|
}
|
2012-05-09 13:54:38 -04:00
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SQL to show infromation about columns in a table
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function column_list($table)
|
|
|
|
{
|
|
|
|
return 'PRAGMA table_info("'.$table.'")';
|
|
|
|
}
|
2012-04-10 14:06:34 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
//End of sqlite_sql.php
|