Firebird.php 4.26 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
 * @package     Doctrine
26
 * @subpackage  Connection
27 28
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
 * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
29
 * @author      Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
30 31 32 33 34
 * @author      Lorenzo Alberton <l.alberton@quipo.it> (PEAR MDB2 Interbase driver)
 * @version     $Revision$
 * @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 47
    /**
     * the constructor
     *
     * @param Doctrine_Manager $manager
     * @param PDO $pdo                          database handle
     */
lsmith's avatar
lsmith committed
48 49
    public function __construct(Doctrine_Manager $manager, $adapter)
    {
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71

        $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
72
        /**
73 74 75 76 77
        $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
78
        */
zYne's avatar
zYne committed
79
        parent::__construct($manager, $adapter);
80
    }
81

82 83 84 85 86 87 88
    /**
     * Set the charset on the current connection
     *
     * @param string    charset
     *
     * @return void
     */
lsmith's avatar
lsmith committed
89 90
    public function setCharset($charset)
    {
91
        $query = 'SET NAMES '.$this->dbh->quote($charset);
92
        $this->exec($query);
93
    }
94

95 96 97
    /**
     * Adds an driver-specific LIMIT clause to the query
     *
98 99 100 101
     * @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
102
     */
lsmith's avatar
lsmith committed
103 104
    public function modifyLimitQuery($query, $limit, $offset)
    {
lsmith's avatar
lsmith committed
105
        if ($limit > 0) {
106
            $query = preg_replace('/^([\s(])*SELECT(?!\s*FIRST\s*\d+)/i',
107
                "SELECT FIRST $limit SKIP $offset", $query);
108 109
        }
        return $query;
zYne's avatar
zYne committed
110
    }
111
}