Source of file SQL.php

Size: 3,918 Bytes - Last Modified: 2015-11-10T10:05:21-05:00

../src/Query/Drivers/Sqlite/SQL.php

12345678910111213141516171819202122232425262728293031323334
Covered by 1 test(s):
  • SQLiteQBTest::testQueryExplain
353637383940414243444546
Covered by 1 test(s):
  • SQLiteQBTest::testOrderByRandom
474849505152535455565758
Covered by 1 test(s):
  • SQLiteTest::testGetDBs
596061626364656667686970717273747576
Covered by 3 test(s):
  • SQLiteTest::testCreateTable
  • SQLiteTest::testDeleteTable
  • SQLiteTest::testGetTables
777879808182838485868788
Covered by 1 test(s):
  • SQLiteTest::testGetSystemTables
8990919293949596979899100101102
Covered by 1 test(s):
  • SQLiteTest::testGetViews
103104105106107108109110111112113114
Covered by 1 test(s):
  • SQLiteTest::testGetTriggers
115116117118119120121122123124125126
Covered by 2 test(s):
  • SQLiteTest::testNullMethods
  • SQLiteTest::testGetFunctions
127128129130131132133134135136137138
Covered by 2 test(s):
  • SQLiteTest::testNullMethods
  • SQLiteTest::testGetProcedures
139140141142143144145146147148149150
Covered by 2 test(s):
  • SQLiteTest::testNullMethods
  • SQLiteTest::testGetSequences
151152153154155156157158159160161162
Covered by 1 test(s):
  • SQLiteTest::testGetTypes
163164165166167168169170171172173174175
Covered by 1 test(s):
  • SQLiteTest::testGetColumns
176177178179180181182183184185186187188189
Covered by 1 test(s):
  • SQLiteTest::testGetFKs
190191192193194195196197198199200201202
Covered by 1 test(s):
  • SQLiteTest::testGetIndexes
203204205206
Covered by 1 test(s):
  • Query_Parser_Test::testGeneric2
<?php
/**
 * Query
 *
 * Free Query Builder / Database Abstraction Layer
 *
 * @package		Query
 * @author		Timothy J. Warren
 * @copyright	Copyright (c) 2012 - 2014
 * @link 		https://github.com/aviat4ion/Query
 * @license		http://philsturgeon.co.uk/code/dbad-license
 */

// --------------------------------------------------------------------------

namespace Query\Drivers\Sqlite;

/**
 * SQLite Specific SQL
 *
 * @package Query
 * @subpackage Drivers
 */
class SQL extends \Query\AbstractSQL {

	/**
	 * Get the query plan for the sql query
	 *
	 * @param string $sql
	 * @return string
	 */
	public function explain($sql)
	{
		return "EXPLAIN QUERY PLAN {$sql}";
	}

	// --------------------------------------------------------------------------

	/**
	 * Random ordering keyword
	 *
	 * @return string
	 */
	public function random()
	{
		return ' RANDOM()';
	}

	// --------------------------------------------------------------------------

	/**
	 * Returns sql to list other databases
	 *
	 * @return string
	 */
	public function db_list()
	{
		return 'PRAGMA database_list';
	}

	// --------------------------------------------------------------------------

	/**
	 * Returns sql to list tables
	 *
	 * @return string
	 */
	public function table_list()
	{
		return <<<SQL
			SELECT DISTINCT "name"
			FROM "sqlite_master"
			WHERE "type"='table'
			AND "name" NOT LIKE 'sqlite_%'
			ORDER BY "name" DESC
SQL;
	}

	// --------------------------------------------------------------------------

	/**
	 * List the system tables
	 *
	 * @return string[]
	 */
	public function system_table_list()
	{
		return array('sqlite_master', 'sqlite_temp_master', 'sqlite_sequence');
	}

	// --------------------------------------------------------------------------

	/**
	 * 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
	 *
	 * @return string
	 */
	public function trigger_list()
	{
		return 'SELECT "name" FROM "sqlite_master" WHERE "type"=\'trigger\'';
	}

	// --------------------------------------------------------------------------

	/**
	 * Return sql to list functions
	 *
	 * @return NULL
	 */
	public function function_list()
	{
		return NULL;
	}

	// --------------------------------------------------------------------------

	/**
	 * Return sql to list stored procedures
	 *
	 * @return NULL
	 */
	public function procedure_list()
	{
		return NULL;
	}

	// --------------------------------------------------------------------------

	/**
	 * Return sql to list sequences
	 *
	 * @return NULL
	 */
	public function sequence_list()
	{
		return NULL;
	}

	// --------------------------------------------------------------------------

	/**
	 * SQL to show list of field types
	 *
	 * @return string[]
	 */
	public function type_list()
	{
		return array('INTEGER', 'REAL', 'TEXT', 'BLOB');
	}

	// --------------------------------------------------------------------------

	/**
	 * SQL to show infromation about columns in a table
	 *
	 * @param string $table
	 * @return string
	 */
	public function column_list($table)
	{
		return 'PRAGMA table_info("'.$table.'")';
	}

	// --------------------------------------------------------------------------

	/**
	 * Get the list of foreign keys for the current
	 * table
	 *
	 * @param string $table
	 * @return string
	 */
	public function fk_list($table)
	{
		return 'PRAGMA foreign_key_list("' . $table . '")';
	}

	// --------------------------------------------------------------------------

	/**
	 * Get the list of indexes for the current table
	 *
	 * @param string $table
	 * @return string
	 */
	public function index_list($table)
	{
		return 'PRAGMA index_list("' . $table . '")';
	}

}
//End of sqlite_sql.php