Driver.php 2.44 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?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
Benjamin Eberlei's avatar
Benjamin Eberlei committed
16
 * and is licensed under the MIT license. For more information, see
17
 * <http://www.doctrine-project.org>.
Benjamin Morel's avatar
Benjamin Morel committed
18
 */
19 20 21

namespace Doctrine\DBAL\Driver\PDOIbm;

22
use Doctrine\DBAL\Driver\AbstractDB2Driver;
Steve Müller's avatar
Steve Müller committed
23
use Doctrine\DBAL\Driver\PDOConnection;
24 25

/**
Benjamin Morel's avatar
Benjamin Morel committed
26
 * Driver for the PDO IBM extension.
27
 *
Benjamin Morel's avatar
Benjamin Morel committed
28 29 30 31 32 33
 * @link   www.doctrine-project.org
 * @since  1.0
 * @author Benjamin Eberlei <kontakt@beberlei.de>
 * @author Guilherme Blanco <guilhermeblanco@hotmail.com>
 * @author Jonathan Wage <jonwage@gmail.com>
 * @author Roman Borschel <roman@code-factory.org>
34
 */
35
class Driver extends AbstractDB2Driver
36 37
{
    /**
Benjamin Morel's avatar
Benjamin Morel committed
38
     * {@inheritdoc}
39
     */
40
    public function connect(array $params, $username = null, $password = null, array $driverOptions = [])
41
    {
Steve Müller's avatar
Steve Müller committed
42
        $conn = new PDOConnection(
43 44 45 46 47
            $this->_constructPdoDsn($params),
            $username,
            $password,
            $driverOptions
        );
Benjamin Morel's avatar
Benjamin Morel committed
48

49 50 51 52
        return $conn;
    }

    /**
Benjamin Morel's avatar
Benjamin Morel committed
53 54 55
     * Constructs the IBM PDO DSN.
     *
     * @param array $params
56
     *
Benjamin Morel's avatar
Benjamin Morel committed
57
     * @return string The DSN.
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
     */
    private function _constructPdoDsn(array $params)
    {
        $dsn = 'ibm:';
        if (isset($params['host'])) {
            $dsn .= 'HOSTNAME=' . $params['host'] . ';';
        }
        if (isset($params['port'])) {
            $dsn .= 'PORT=' . $params['port'] . ';';
        }
        $dsn .= 'PROTOCOL=TCPIP;';
        if (isset($params['dbname'])) {
            $dsn .= 'DATABASE=' . $params['dbname'] . ';';
        }

        return $dsn;
    }

    /**
Benjamin Morel's avatar
Benjamin Morel committed
77
     * {@inheritdoc}
78 79 80 81 82
     */
    public function getName()
    {
        return 'pdo_ibm';
    }
Benjamin Eberlei's avatar
Benjamin Eberlei committed
83
}