Pt_BR En Ja De Fr 
You are currently viewing the Development branch api documentation. Switch to 0.11 or 1.0

Development Doctrine_Export_Mssql

Doctrine Export Mssql

Inheritence

Doctrine_Export_Mssql  < Doctrine_Export  < Doctrine_Connection_Module

Method Details

  • $name name of the database that should be dropped

    dropDatabase($name)

    drop an existing database


  • $seqName name of the sequence to be dropped

    dropSequenceSql($seqName)

    This function drops an existing sequence


  • $name name of the table that is intended to be changed.
    $changes

    associative array that contains the details of each type of change that is intended to be performed. The types of changes that are currently supported are defined as follows:

    name

    New name f

    $check indicates whether the function should just check if the DBMS driver can perform the requested table alterations if the value is true or actually perform them otherwise.

    alterTable($name, $changes, $check = false)

    alter an existing table


  • $seqName name of the sequence to be created
    $start start value of the sequence; default is 1
    $options An associative array of table options: array( 'comment' => 'Foo', 'charset' => 'utf8', 'collate' => 'utf8_unicode_ci', );

    (string) createSequence($seqName, $start = 1, $options = array())

    create sequence


  • (string) getTemporaryTableQuery()

    Override the parent method.

    Doctrine_Export_Mssql


  • $name name of the database that should be created

    createDatabase($name)

    create a new database


Comments (0) [ add comment ]

 No Comments

Add Comment

Add New Comment
Please enter follow the doctrine