OCI8Connection.php 4.55 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
<?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 LGPL. For more information, see
 * <http://www.doctrine-project.org>.
 */

namespace Doctrine\DBAL\Driver\OCI8;

/**
 * OCI8 implementation of the Connection interface.
 *
 * @since 2.0
 */
27
class OCI8Connection implements \Doctrine\DBAL\Driver\Connection
28
{
29
    protected $_dbh;
30

31
    protected $_executeMode = OCI_COMMIT_ON_SUCCESS;
32

33 34
    /**
     * Create a Connection to an Oracle Database using oci8 extension.
35
     *
36 37 38 39
     * @param string $username
     * @param string $password
     * @param string $db
     */
40
    public function __construct($username, $password, $db, $charset = null, $sessionMode = OCI_DEFAULT, $persistent = false)
41
    {
42 43 44 45
        if (!defined('OCI_NO_AUTO_COMMIT')) {
            define('OCI_NO_AUTO_COMMIT', 0);
        }

46
        $this->_dbh = $persistent
47 48
            ? @oci_pconnect($username, $password, $db, $charset, $sessionMode)
            : @oci_connect($username, $password, $db, $charset, $sessionMode);
49

50
        if ( ! $this->_dbh) {
51
            throw OCI8Exception::fromErrorInfo(oci_error());
52
        }
53
    }
54 55 56

    /**
     * Create a non-executed prepared statement.
57
     *
58 59 60
     * @param  string $prepareString
     * @return OCI8Statement
     */
61 62
    public function prepare($prepareString)
    {
63
        return new OCI8Statement($this->_dbh, $prepareString, $this);
64
    }
65 66 67 68 69

    /**
     * @param string $sql
     * @return OCI8Statement
     */
70 71 72 73 74 75 76 77 78
    public function query()
    {
        $args = func_get_args();
        $sql = $args[0];
        //$fetchMode = $args[1];
        $stmt = $this->prepare($sql);
        $stmt->execute();
        return $stmt;
    }
79 80 81 82 83

    /**
     * Quote input value.
     *
     * @param mixed $input
84
     * @param int $type PDO::PARAM*
85 86
     * @return mixed
     */
87
    public function quote($value, $type=\PDO::PARAM_STR)
88
    {
89 90 91 92 93
        if (is_int($value) || is_float($value)) {
            return $value;
        }
        $value = str_replace("'", "''", $value);
        return "'" . addcslashes($value, "\000\n\r\\\032") . "'";
94
    }
95 96 97 98 99 100

    /**
     *
     * @param  string $statement
     * @return int
     */
101 102 103 104 105 106
    public function exec($statement)
    {
        $stmt = $this->prepare($statement);
        $stmt->execute();
        return $stmt->rowCount();
    }
107

108 109 110 111
    public function lastInsertId($name = null)
    {
        //TODO: throw exception or support sequences?
    }
112

113 114 115 116 117 118 119 120
    /**
     * Return the current execution mode.
     */
    public function getExecuteMode()
    {
        return $this->_executeMode;
    }

121 122 123 124 125 126 127 128 129
    /**
     * Start a transactiom
     *
     * Oracle has to explicitly set the autocommit mode off. That means
     * after connection, a commit or rollback there is always automatically
     * opened a new transaction.
     *
     * @return bool
     */
130 131
    public function beginTransaction()
    {
132
        $this->_executeMode = OCI_NO_AUTO_COMMIT;
133 134
        return true;
    }
135 136 137 138 139

    /**
     * @throws OCI8Exception
     * @return bool
     */
140 141
    public function commit()
    {
142 143 144
        if (!oci_commit($this->_dbh)) {
            throw OCI8Exception::fromErrorInfo($this->errorInfo());
        }
145
        $this->_executeMode = OCI_COMMIT_ON_SUCCESS;
146
        return true;
147
    }
148 149 150 151 152

    /**
     * @throws OCI8Exception
     * @return bool
     */
153 154
    public function rollBack()
    {
155 156 157
        if (!oci_rollback($this->_dbh)) {
            throw OCI8Exception::fromErrorInfo($this->errorInfo());
        }
158
        $this->_executeMode = OCI_COMMIT_ON_SUCCESS;
159
        return true;
160
    }
161

162 163 164 165 166 167 168 169
    public function errorCode()
    {
        $error = oci_error($this->_dbh);
        if ($error !== false) {
            $error = $error['code'];
        }
        return $error;
    }
170

171 172 173 174
    public function errorInfo()
    {
        return oci_error($this->_dbh);
    }
175
}