Firebird.php 4.51 KB
Newer Older
zYne's avatar
zYne committed
1
<?php
lsmith's avatar
lsmith committed
2
/*
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 *  $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.phpdoctrine.com>.
 */
Doctrine::autoload('Doctrine_Connection');
zYne's avatar
zYne committed
22
/**
23 24
 * Doctrine_Connection_Firebird
 *
25 26 27
 * @package     Doctrine
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
 * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
28
 * @author      Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
29 30 31 32 33 34
 * @author      Lorenzo Alberton <l.alberton@quipo.it> (PEAR MDB2 Interbase driver)
 * @version     $Revision$
 * @category    Object Relational Mapping
 * @link        www.phpdoctrine.com
 * @since       1.0
 */
lsmith's avatar
lsmith committed
35 36
class Doctrine_Connection_Firebird extends Doctrine_Connection
{
37 38 39 40
    /**
     * @var string $driverName                  the name of this connection driver
     */
    protected $driverName = 'Firebird';
41 42 43 44 45 46
    /**
     * the constructor
     *
     * @param Doctrine_Manager $manager
     * @param PDO $pdo                          database handle
     */
lsmith's avatar
lsmith committed
47 48
    public function __construct(Doctrine_Manager $manager, $adapter)
    {
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70

        $this->supported = array(
                          'sequences'             => true,
                          'indexes'               => true,
                          'affected_rows'         => true,
                          'summary_functions'     => true,
                          'order_by_text'         => true,
                          'transactions'          => true,
                          'savepoints'            => true,
                          'current_id'            => true,
                          'limit_queries'         => 'emulated',
                          'LOBs'                  => true,
                          'replace'               => 'emulated',
                          'sub_selects'           => true,
                          'auto_increment'        => true,
                          'primary_key'           => true,
                          'result_introspection'  => true,
                          'prepared_statements'   => true,
                          'identifier_quoting'    => false,
                          'pattern_escaping'      => true
                          );
        // initialize all driver options
zYne's avatar
zYne committed
71
        /**
72 73 74 75 76
        $this->options['DBA_username'] = false;
        $this->options['DBA_password'] = false;
        $this->options['database_path'] = '';
        $this->options['database_extension'] = '.gdb';
        $this->options['server_version'] = '';
zYne's avatar
zYne committed
77
        */
zYne's avatar
zYne committed
78
        parent::__construct($manager, $adapter);
79 80 81 82 83 84 85 86
    }
    /**
     * Set the charset on the current connection
     *
     * @param string    charset
     *
     * @return void
     */
lsmith's avatar
lsmith committed
87 88
    public function setCharset($charset)
    {
89
        $query = 'SET NAMES '.$this->dbh->quote($charset);
90
        $this->exec($query);
91
    }
92 93 94
    /**
     * Adds an driver-specific LIMIT clause to the query
     *
95 96 97 98
     * @param string $query     query to modify
     * @param integer $limit    limit the number of rows
     * @param integer $offset   start reading from given offset
     * @return string modified  query
99
     */
lsmith's avatar
lsmith committed
100 101
    public function modifyLimitQuery($query, $limit, $offset)
    {
lsmith's avatar
lsmith committed
102
        if ($limit > 0) {
103
            $query = preg_replace('/^([\s(])*SELECT(?!\s*FIRST\s*\d+)/i',
104
                "SELECT FIRST $limit SKIP $offset", $query);
105 106
        }
        return $query;
zYne's avatar
zYne committed
107 108 109 110 111 112
    }
    /**
     * returns the next value in the given sequence
     * @param string $sequence
     * @return integer
     */
113
    public function nextId($sequence)
lsmith's avatar
lsmith committed
114
    {
115
        return $this->fetchOne('SELECT UNIQUE FROM ' . $sequence);
zYne's avatar
zYne committed
116 117
    }
}