. */ namespace Doctrine\DBAL\Platforms; use Doctrine\Common\DoctrineException; /** * The SqlitePlatform class describes the specifics and dialects of the SQLite * database platform. * * @since 2.0 * @author Roman Borschel * @author Benjamin Eberlei */ class SqlitePlatform extends AbstractPlatform { /** * 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\')'; } } /** * 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 . ')'; } /** * 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 . '))'; } protected function _getTransactionIsolationLevelSql($level) { switch ($level) { case \Doctrine\DBAL\Connection::TRANSACTION_READ_UNCOMMITTED: return 0; case \Doctrine\DBAL\Connection::TRANSACTION_READ_COMMITTED: case \Doctrine\DBAL\Connection::TRANSACTION_REPEATABLE_READ: case \Doctrine\DBAL\Connection::TRANSACTION_SERIALIZABLE: return 1; default: return parent::_getTransactionIsolationLevelSql($level); } } public function getSetTransactionIsolationSql($level) { return 'PRAGMA read_uncommitted = ' . $this->_getTransactionIsolationLevelSql($level); } /** * @override */ public function prefersIdentityColumns() { return true; } /** * @override */ public function getBooleanTypeDeclarationSql(array $field) { return 'BOOLEAN'; } /** * @override */ public function getIntegerTypeDeclarationSql(array $field) { return $this->_getCommonIntegerTypeDeclarationSql($field); } /** * @override */ public function getBigIntTypeDeclarationSql(array $field) { return $this->_getCommonIntegerTypeDeclarationSql($field); } /** * @override */ public function getTinyIntTypeDeclarationSql(array $field) { return $this->_getCommonIntegerTypeDeclarationSql($field); } /** * @override */ public function getSmallIntTypeDeclarationSql(array $field) { return $this->_getCommonIntegerTypeDeclarationSql($field); } /** * @override */ public function getMediumIntTypeDeclarationSql(array $field) { return $this->_getCommonIntegerTypeDeclarationSql($field); } /** * @override */ public function getDateTimeTypeDeclarationSql(array $fieldDeclaration) { return 'DATETIME'; } /** * @override */ public function getDateTypeDeclarationSql(array $fieldDeclaration) { return 'DATE'; } /** * @override */ public function getTimeTypeDeclarationSql(array $fieldDeclaration) { return 'TIME'; } /** * @override */ protected function _getCommonIntegerTypeDeclarationSql(array $columnDef) { $autoinc = ! empty($columnDef['autoincrement']) ? ' AUTOINCREMENT' : ''; $pk = ! empty($columnDef['primary']) && ! empty($autoinc) ? ' PRIMARY KEY' : ''; return 'INTEGER' . $pk . $autoinc; } /** * 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 */ protected function _getCreateTableSql($name, array $columns, array $options = array()) { if ( ! $name) { throw DoctrineException::invalidTableName($name); } if (empty($columns)) { throw DoctrineException::noFieldsSpecifiedForTable($name); } $queryFields = $this->getColumnDeclarationListSql($columns); $autoinc = false; foreach($columns as $field) { if (isset($field['autoincrement']) && $field['autoincrement']) { $autoinc = true; break; } } if ( ! $autoinc && isset($options['primary']) && ! empty($options['primary'])) { $keyColumns = array_unique(array_values($options['primary'])); $keyColumns = array_map(array($this, 'quoteIdentifier'), $keyColumns); $queryFields.= ', PRIMARY KEY('.implode(', ', $keyColumns).')'; } $query[] = 'CREATE TABLE ' . $name . ' (' . $queryFields . ')'; if (isset($options['indexes']) && ! empty($options['indexes'])) { 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); } } return $query; } /** * {@inheritdoc} */ public function getVarcharTypeDeclarationSql(array $field) { 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'); } public function getClobTypeDeclarationSql(array $field) { return 'CLOB'; } public function getListTableConstraintsSql($table) { return "SELECT sql FROM sqlite_master WHERE type='index' AND tbl_name = '$table' AND sql NOT NULL ORDER BY name"; } 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"; } public function getListViewsSql($database) { return "SELECT name, sql FROM sqlite_master WHERE type='view' AND sql NOT NULL"; } public function getCreateViewSql($name, $sql) { return 'CREATE VIEW ' . $name . ' AS ' . $sql; } public function getDropViewSql($name) { return 'DROP VIEW '. $name; } /** * 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... * * @return boolean FALSE * @override */ public function supportsForeignKeyConstraints() { return false; } public function supportsAlterTable() { return false; } /** * Get the platform name for this instance * * @return string */ public function getName() { return 'sqlite'; } /** * @inheritdoc */ public function getTruncateTableSql($tableName, $cascade = false) { return 'DELETE FROM '.$tableName; } /** * 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); } }