2008-08-01 22:46:14 +04:00
|
|
|
<?php
|
2009-02-05 20:34:44 +03:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This software consists of voluntary contributions made by many individuals
|
|
|
|
* and is licensed under the LGPL. For more information, see
|
|
|
|
* <http://www.doctrine-project.org>.
|
|
|
|
*/
|
2008-08-01 22:46:14 +04:00
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
namespace Doctrine\DBAL\Platforms;
|
2008-08-01 22:46:14 +04:00
|
|
|
|
2009-05-21 12:53:40 +04:00
|
|
|
use Doctrine\Common\DoctrineException;
|
|
|
|
|
2008-08-01 22:46:14 +04:00
|
|
|
/**
|
2009-02-05 20:34:44 +03:00
|
|
|
* The SqlitePlatform class describes the specifics and dialects of the SQLite
|
|
|
|
* database platform.
|
2008-08-01 22:46:14 +04:00
|
|
|
*
|
|
|
|
* @since 2.0
|
2009-05-03 22:07:57 +04:00
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
2010-02-11 17:29:12 +03:00
|
|
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
2008-08-01 22:46:14 +04:00
|
|
|
*/
|
2009-01-22 22:38:10 +03:00
|
|
|
class SqlitePlatform extends AbstractPlatform
|
2008-08-01 22:46:14 +04:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* returns the regular expression operator
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
* @override
|
|
|
|
*/
|
|
|
|
public function getRegexpExpression()
|
|
|
|
{
|
|
|
|
return 'RLIKE';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return string to call a variable with the current timestamp inside an SQL statement
|
|
|
|
* There are three special variables for current date and time.
|
|
|
|
*
|
|
|
|
* @return string sqlite function as string
|
|
|
|
* @override
|
|
|
|
*/
|
|
|
|
public function getNowExpression($type = 'timestamp')
|
|
|
|
{
|
|
|
|
switch ($type) {
|
|
|
|
case 'time':
|
|
|
|
return 'time(\'now\')';
|
|
|
|
case 'date':
|
|
|
|
return 'date(\'now\')';
|
|
|
|
case 'timestamp':
|
|
|
|
default:
|
|
|
|
return 'datetime(\'now\')';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-12 00:19:54 +03:00
|
|
|
/**
|
|
|
|
* Trim a string, leading/trailing/both and with a given char which defaults to space.
|
|
|
|
*
|
|
|
|
* @param string $str
|
|
|
|
* @param int $pos
|
|
|
|
* @param string $char
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getTrimExpression($str, $pos = self::TRIM_UNSPECIFIED, $char = false)
|
|
|
|
{
|
|
|
|
$trimFn = '';
|
|
|
|
$trimChar = ($char != false) ? (', ' . $char) : '';
|
|
|
|
|
|
|
|
if ($pos == self::TRIM_LEADING) {
|
|
|
|
$trimFn = 'LTRIM';
|
|
|
|
} else if($pos == self::TRIM_TRAILING) {
|
|
|
|
$trimFn = 'RTRIM';
|
|
|
|
} else {
|
|
|
|
$trimFn = 'TRIM';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $trimFn . '(' . $str . $trimChar . ')';
|
|
|
|
}
|
|
|
|
|
2008-08-01 22:46:14 +04:00
|
|
|
/**
|
|
|
|
* return string to call a function to get a substring inside an SQL statement
|
|
|
|
*
|
|
|
|
* Note: Not SQL92, but common functionality.
|
|
|
|
*
|
|
|
|
* SQLite only supports the 2 parameter variant of this function
|
|
|
|
*
|
|
|
|
* @param string $value an sql string literal or column name/alias
|
|
|
|
* @param integer $position where to start the substring portion
|
|
|
|
* @param integer $length the substring portion length
|
|
|
|
* @return string SQL substring function with given parameters
|
|
|
|
* @override
|
|
|
|
*/
|
|
|
|
public function getSubstringExpression($value, $position, $length = null)
|
|
|
|
{
|
|
|
|
if ($length !== null) {
|
|
|
|
return 'SUBSTR(' . $value . ', ' . $position . ', ' . $length . ')';
|
|
|
|
}
|
|
|
|
return 'SUBSTR(' . $value . ', ' . $position . ', LENGTH(' . $value . '))';
|
|
|
|
}
|
|
|
|
|
2010-02-12 01:38:23 +03:00
|
|
|
/**
|
|
|
|
* returns the position of the first occurrence of substring $substr in string $str
|
|
|
|
*
|
|
|
|
* @param string $substr literal string to find
|
|
|
|
* @param string $str literal string
|
|
|
|
* @param int $pos position to start at, beginning of string by default
|
|
|
|
* @return integer
|
|
|
|
*/
|
|
|
|
public function getLocateExpression($str, $substr, $startPos = false)
|
|
|
|
{
|
|
|
|
if ($startPos == false) {
|
|
|
|
return 'LOCATE('.$str.', '.$substr.')';
|
|
|
|
} else {
|
|
|
|
return 'LOCATE('.$str.', '.$substr.', '.$startPos.')';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-12 21:25:38 +04:00
|
|
|
protected function _getTransactionIsolationLevelSql($level)
|
|
|
|
{
|
|
|
|
switch ($level) {
|
2009-05-03 22:07:57 +04:00
|
|
|
case \Doctrine\DBAL\Connection::TRANSACTION_READ_UNCOMMITTED:
|
2008-09-12 21:25:38 +04:00
|
|
|
return 0;
|
2009-05-03 22:07:57 +04:00
|
|
|
case \Doctrine\DBAL\Connection::TRANSACTION_READ_COMMITTED:
|
|
|
|
case \Doctrine\DBAL\Connection::TRANSACTION_REPEATABLE_READ:
|
|
|
|
case \Doctrine\DBAL\Connection::TRANSACTION_SERIALIZABLE:
|
2008-09-12 21:25:38 +04:00
|
|
|
return 1;
|
|
|
|
default:
|
|
|
|
return parent::_getTransactionIsolationLevelSql($level);
|
|
|
|
}
|
|
|
|
}
|
2009-05-29 01:34:35 +04:00
|
|
|
|
2008-09-12 21:25:38 +04:00
|
|
|
public function getSetTransactionIsolationSql($level)
|
|
|
|
{
|
|
|
|
return 'PRAGMA read_uncommitted = ' . $this->_getTransactionIsolationLevelSql($level);
|
|
|
|
}
|
2009-01-07 20:46:02 +03:00
|
|
|
|
2009-09-05 06:23:24 +04:00
|
|
|
/**
|
|
|
|
* @override
|
|
|
|
*/
|
2009-05-27 22:54:40 +04:00
|
|
|
public function prefersIdentityColumns()
|
|
|
|
{
|
2009-01-07 20:46:02 +03:00
|
|
|
return true;
|
|
|
|
}
|
2009-09-05 06:23:24 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @override
|
|
|
|
*/
|
|
|
|
public function getBooleanTypeDeclarationSql(array $field)
|
|
|
|
{
|
|
|
|
return 'BOOLEAN';
|
|
|
|
}
|
2009-01-07 20:46:02 +03:00
|
|
|
|
2009-09-05 06:23:24 +04:00
|
|
|
/**
|
|
|
|
* @override
|
|
|
|
*/
|
2009-01-07 20:46:02 +03:00
|
|
|
public function getIntegerTypeDeclarationSql(array $field)
|
|
|
|
{
|
2009-02-02 14:55:50 +03:00
|
|
|
return $this->_getCommonIntegerTypeDeclarationSql($field);
|
2009-01-07 20:46:02 +03:00
|
|
|
}
|
|
|
|
|
2009-09-05 06:23:24 +04:00
|
|
|
/**
|
|
|
|
* @override
|
|
|
|
*/
|
2009-01-07 20:46:02 +03:00
|
|
|
public function getBigIntTypeDeclarationSql(array $field)
|
|
|
|
{
|
2009-02-02 14:55:50 +03:00
|
|
|
return $this->_getCommonIntegerTypeDeclarationSql($field);
|
2009-01-07 20:46:02 +03:00
|
|
|
}
|
|
|
|
|
2009-09-05 06:23:24 +04:00
|
|
|
/**
|
|
|
|
* @override
|
|
|
|
*/
|
2009-01-07 20:46:02 +03:00
|
|
|
public function getTinyIntTypeDeclarationSql(array $field)
|
|
|
|
{
|
2009-02-02 14:55:50 +03:00
|
|
|
return $this->_getCommonIntegerTypeDeclarationSql($field);
|
2009-01-07 20:46:02 +03:00
|
|
|
}
|
|
|
|
|
2009-09-05 06:23:24 +04:00
|
|
|
/**
|
|
|
|
* @override
|
|
|
|
*/
|
2009-01-07 20:46:02 +03:00
|
|
|
public function getSmallIntTypeDeclarationSql(array $field)
|
|
|
|
{
|
2009-02-02 14:55:50 +03:00
|
|
|
return $this->_getCommonIntegerTypeDeclarationSql($field);
|
2009-01-07 20:46:02 +03:00
|
|
|
}
|
|
|
|
|
2009-09-05 06:23:24 +04:00
|
|
|
/**
|
|
|
|
* @override
|
|
|
|
*/
|
2009-01-07 20:46:02 +03:00
|
|
|
public function getMediumIntTypeDeclarationSql(array $field)
|
|
|
|
{
|
2009-02-02 14:55:50 +03:00
|
|
|
return $this->_getCommonIntegerTypeDeclarationSql($field);
|
2009-01-07 20:46:02 +03:00
|
|
|
}
|
|
|
|
|
2009-09-05 06:23:24 +04:00
|
|
|
/**
|
|
|
|
* @override
|
|
|
|
*/
|
2009-06-20 16:59:33 +04:00
|
|
|
public function getDateTimeTypeDeclarationSql(array $fieldDeclaration)
|
|
|
|
{
|
|
|
|
return 'DATETIME';
|
|
|
|
}
|
2009-08-28 21:25:28 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @override
|
|
|
|
*/
|
|
|
|
public function getDateTypeDeclarationSql(array $fieldDeclaration)
|
|
|
|
{
|
|
|
|
return 'DATE';
|
|
|
|
}
|
2009-06-20 16:59:33 +04:00
|
|
|
|
2009-11-03 19:56:05 +03:00
|
|
|
/**
|
|
|
|
* @override
|
|
|
|
*/
|
|
|
|
public function getTimeTypeDeclarationSql(array $fieldDeclaration)
|
|
|
|
{
|
|
|
|
return 'TIME';
|
|
|
|
}
|
|
|
|
|
2009-09-05 06:23:24 +04:00
|
|
|
/**
|
|
|
|
* @override
|
|
|
|
*/
|
2009-01-07 20:46:02 +03:00
|
|
|
protected function _getCommonIntegerTypeDeclarationSql(array $columnDef)
|
|
|
|
{
|
2009-02-17 15:25:03 +03:00
|
|
|
$autoinc = ! empty($columnDef['autoincrement']) ? ' AUTOINCREMENT' : '';
|
|
|
|
$pk = ! empty($columnDef['primary']) && ! empty($autoinc) ? ' PRIMARY KEY' : '';
|
2009-01-07 20:46:02 +03:00
|
|
|
|
2009-06-20 16:59:33 +04:00
|
|
|
return 'INTEGER' . $pk . $autoinc;
|
2009-01-07 20:46:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* create a new table
|
|
|
|
*
|
|
|
|
* @param string $name Name of the database that should be created
|
|
|
|
* @param array $fields Associative array that contains the definition of each field of the new table
|
|
|
|
* The indexes of the array entries are the names of the fields of the table an
|
|
|
|
* the array entry values are associative arrays like those that are meant to be
|
|
|
|
* passed with the field definitions to get[Type]Declaration() functions.
|
|
|
|
* array(
|
|
|
|
* 'id' => array(
|
|
|
|
* 'type' => 'integer',
|
|
|
|
* 'unsigned' => 1
|
|
|
|
* 'notnull' => 1
|
|
|
|
* 'default' => 0
|
|
|
|
* ),
|
|
|
|
* 'name' => array(
|
|
|
|
* 'type' => 'text',
|
|
|
|
* 'length' => 12
|
|
|
|
* ),
|
|
|
|
* 'password' => array(
|
|
|
|
* 'type' => 'text',
|
|
|
|
* 'length' => 12
|
|
|
|
* )
|
|
|
|
* );
|
|
|
|
* @param array $options An associative array of table options:
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
* @override
|
|
|
|
*/
|
2009-12-02 21:52:21 +03:00
|
|
|
protected function _getCreateTableSql($name, array $columns, array $options = array())
|
2009-01-07 20:46:02 +03:00
|
|
|
{
|
|
|
|
if ( ! $name) {
|
2009-05-21 12:53:40 +04:00
|
|
|
throw DoctrineException::invalidTableName($name);
|
2009-01-07 20:46:02 +03:00
|
|
|
}
|
|
|
|
|
2009-12-02 21:52:21 +03:00
|
|
|
if (empty($columns)) {
|
2009-05-21 12:53:40 +04:00
|
|
|
throw DoctrineException::noFieldsSpecifiedForTable($name);
|
2009-01-07 20:46:02 +03:00
|
|
|
}
|
2009-12-02 21:52:21 +03:00
|
|
|
$queryFields = $this->getColumnDeclarationListSql($columns);
|
2009-01-07 20:46:02 +03:00
|
|
|
|
|
|
|
$autoinc = false;
|
2009-12-02 21:52:21 +03:00
|
|
|
foreach($columns as $field) {
|
2009-02-02 14:55:50 +03:00
|
|
|
if (isset($field['autoincrement']) && $field['autoincrement']) {
|
2009-01-07 20:46:02 +03:00
|
|
|
$autoinc = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-02 14:55:50 +03:00
|
|
|
if ( ! $autoinc && isset($options['primary']) && ! empty($options['primary'])) {
|
2009-05-03 14:58:16 +04:00
|
|
|
$keyColumns = array_unique(array_values($options['primary']));
|
2009-01-08 14:23:24 +03:00
|
|
|
$keyColumns = array_map(array($this, 'quoteIdentifier'), $keyColumns);
|
2009-01-07 20:46:02 +03:00
|
|
|
$queryFields.= ', PRIMARY KEY('.implode(', ', $keyColumns).')';
|
|
|
|
}
|
|
|
|
|
2009-12-02 21:52:21 +03:00
|
|
|
$query[] = 'CREATE TABLE ' . $name . ' (' . $queryFields . ')';
|
2009-01-07 20:46:02 +03:00
|
|
|
|
|
|
|
if (isset($options['indexes']) && ! empty($options['indexes'])) {
|
2009-12-02 21:52:21 +03:00
|
|
|
foreach ($options['indexes'] as $index => $indexDef) {
|
|
|
|
$query[] = $this->getCreateIndexSql($indexDef, $name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (isset($options['unique']) && ! empty($options['unique'])) {
|
|
|
|
foreach ($options['unique'] as $index => $indexDef) {
|
|
|
|
$query[] = $this->getCreateIndexSql($indexDef, $name);
|
2009-01-07 20:46:02 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $query;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
2009-05-03 22:07:57 +04:00
|
|
|
public function getVarcharTypeDeclarationSql(array $field)
|
2009-01-07 20:46:02 +03:00
|
|
|
{
|
|
|
|
if ( ! isset($field['length'])) {
|
|
|
|
if (array_key_exists('default', $field)) {
|
|
|
|
$field['length'] = $this->getVarcharMaxLength();
|
|
|
|
} else {
|
|
|
|
$field['length'] = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$length = ($field['length'] <= $this->getVarcharMaxLength()) ? $field['length'] : false;
|
|
|
|
$fixed = (isset($field['fixed'])) ? $field['fixed'] : false;
|
|
|
|
|
|
|
|
return $fixed ? ($length ? 'CHAR(' . $length . ')' : 'CHAR(255)')
|
|
|
|
: ($length ? 'VARCHAR(' . $length . ')' : 'TEXT');
|
|
|
|
}
|
2009-10-01 16:00:14 +04:00
|
|
|
|
|
|
|
public function getClobTypeDeclarationSql(array $field)
|
|
|
|
{
|
|
|
|
return 'CLOB';
|
|
|
|
}
|
2009-02-04 19:35:36 +03:00
|
|
|
|
2009-05-27 22:54:40 +04:00
|
|
|
public function getListTableConstraintsSql($table)
|
|
|
|
{
|
2009-05-28 06:04:51 +04:00
|
|
|
return "SELECT sql FROM sqlite_master WHERE type='index' AND tbl_name = '$table' AND sql NOT NULL ORDER BY name";
|
2009-05-27 22:54:40 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getListTableColumnsSql($table)
|
|
|
|
{
|
|
|
|
return "PRAGMA table_info($table)";
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getListTableIndexesSql($table)
|
|
|
|
{
|
|
|
|
return "PRAGMA index_list($table)";
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getListTablesSql()
|
|
|
|
{
|
|
|
|
return "SELECT name FROM sqlite_master WHERE type = 'table' AND name != 'sqlite_sequence' "
|
|
|
|
. "UNION ALL SELECT name FROM sqlite_temp_master "
|
|
|
|
. "WHERE type = 'table' ORDER BY name";
|
|
|
|
}
|
|
|
|
|
2010-02-11 02:41:35 +03:00
|
|
|
public function getListViewsSql($database)
|
2009-05-27 22:54:40 +04:00
|
|
|
{
|
|
|
|
return "SELECT name, sql FROM sqlite_master WHERE type='view' AND sql NOT NULL";
|
|
|
|
}
|
|
|
|
|
2009-05-28 06:04:51 +04:00
|
|
|
public function getCreateViewSql($name, $sql)
|
|
|
|
{
|
|
|
|
return 'CREATE VIEW ' . $name . ' AS ' . $sql;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getDropViewSql($name)
|
|
|
|
{
|
|
|
|
return 'DROP VIEW '. $name;
|
|
|
|
}
|
|
|
|
|
2009-02-04 19:35:36 +03:00
|
|
|
/**
|
|
|
|
* SQLite does support foreign key constraints, but only in CREATE TABLE statements...
|
|
|
|
* This really limits their usefulness and requires SQLite specific handling, so
|
|
|
|
* we simply say that SQLite does NOT support foreign keys for now...
|
|
|
|
*
|
2009-02-05 20:34:44 +03:00
|
|
|
* @return boolean FALSE
|
2009-02-04 19:35:36 +03:00
|
|
|
* @override
|
|
|
|
*/
|
|
|
|
public function supportsForeignKeyConstraints()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2009-05-27 22:54:40 +04:00
|
|
|
|
2009-12-06 15:13:15 +03:00
|
|
|
public function supportsAlterTable()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-05-27 22:54:40 +04:00
|
|
|
/**
|
|
|
|
* Get the platform name for this instance
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getName()
|
|
|
|
{
|
|
|
|
return 'sqlite';
|
|
|
|
}
|
2010-02-07 15:36:30 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
public function getTruncateTableSql($tableName, $cascade = false)
|
|
|
|
{
|
|
|
|
return 'DELETE FROM '.$tableName;
|
|
|
|
}
|
2010-02-12 00:38:58 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* User-defined function for Sqlite that is used with PDO::sqliteCreateFunction()
|
|
|
|
*
|
|
|
|
* @param int|float $value
|
|
|
|
* @return float
|
|
|
|
*/
|
|
|
|
static public function udfSqrt($value)
|
|
|
|
{
|
|
|
|
return sqrt($value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* User-defined function for Sqlite that implements MOD(a, b)
|
|
|
|
*/
|
|
|
|
static public function udfMod($a, $b)
|
|
|
|
{
|
|
|
|
return ($a % $b);
|
|
|
|
}
|
2010-02-12 01:38:23 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $str
|
|
|
|
* @param string $substr
|
|
|
|
* @param int $offset
|
|
|
|
*/
|
|
|
|
static public function udfLocate($str, $substr, $offset = 0)
|
|
|
|
{
|
|
|
|
$pos = strpos($str, $substr, $offset);
|
|
|
|
if ($pos !== false) {
|
|
|
|
return $pos+1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2009-11-03 19:56:05 +03:00
|
|
|
}
|