Вход Регистрация
Файл: concrete5.7.5.6/concrete/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SQLAnywhere12Platform.php
Строк: 147
<?php
/*
 * 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 MIT license. For more information, see
 * <http://www.doctrine-project.org>.
 */

namespace DoctrineDBALPlatforms;

use 
DoctrineDBALSchemaIndex;
use 
DoctrineDBALSchemaSequence;

/**
 * The SQLAnywhere12Platform provides the behavior, features and SQL dialect of the
 * SAP Sybase SQL Anywhere 12 database platform.
 *
 * @author Steve Müller <st.mueller@dzh-online.de>
 * @link   www.doctrine-project.org
 * @since  2.5
 */
class SQLAnywhere12Platform extends SQLAnywhere11Platform
{
    
/**
     * {@inheritdoc}
     */
    
public function getCreateSequenceSQL(Sequence $sequence)
    {
        return 
'CREATE SEQUENCE ' $sequence->getQuotedName($this) .
            
' INCREMENT BY ' $sequence->getAllocationSize() .
            
' START WITH ' $sequence->getInitialValue() .
            
' MINVALUE ' $sequence->getInitialValue();
    }

    
/**
     * {@inheritdoc}
     */
    
public function getAlterSequenceSQL(Sequence $sequence)
    {
        return 
'ALTER SEQUENCE ' $sequence->getQuotedName($this) .
            
' INCREMENT BY ' $sequence->getAllocationSize();
    }

    
/**
     * {@inheritdoc}
     */
    
public function getDateTimeTzFormatString()
    {
        return 
'Y-m-d H:i:s.uP';
    }

    
/**
     * {@inheritdoc}
     */
    
public function getDateTimeTzTypeDeclarationSQL(array $fieldDeclaration)
    {
        return 
'TIMESTAMP WITH TIME ZONE';
    }

    
/**
     * {@inheritdoc}
     */
    
public function getDropSequenceSQL($sequence)
    {
        if (
$sequence instanceof Sequence) {
            
$sequence $sequence->getQuotedName($this);
        }

        return 
'DROP SEQUENCE ' $sequence;
    }

    
/**
     * {@inheritdoc}
     */
    
public function getListSequencesSQL($database)
    {
        return 
'SELECT sequence_name, increment_by, start_with, min_value FROM SYS.SYSSEQUENCE';
    }

    
/**
     * {@inheritdoc}
     */
    
public function getSequenceNextValSQL($sequenceName)
    {
        return 
'SELECT ' $sequenceName '.NEXTVAL';
    }

    
/**
     * {@inheritdoc}
     */
    
public function supportsSequences()
    {
        return 
true;
    }

    
/**
     * {@inheritdoc}
     */
    
protected function getAdvancedIndexOptionsSQL(Index $index)
    {
        if ( ! 
$index->isPrimary() && $index->isUnique() && $index->hasFlag('with_nulls_not_distinct')) {
            return 
' WITH NULLS NOT DISTINCT' parent::getAdvancedIndexOptionsSQL($index);
        }

        return 
parent::getAdvancedIndexOptionsSQL($index);
    }

    
/**
     * {@inheritdoc}
     */
    
protected function getReservedKeywordsClass()
    {
        return 
'DoctrineDBALPlatformsKeywordsSQLAnywhere12Keywords';
    }

    
/**
     * {@inheritDoc}
     */
    
protected function initializeDoctrineTypeMappings()
    {
        
parent::initializeDoctrineTypeMappings();
        
$this->doctrineTypeMapping['timestamp with time zone'] = 'datetime';
    }
}
Онлайн: 1
Реклама