PDOStatement.php 5.04 KB
Newer Older
romanb's avatar
romanb committed
1
<?php
2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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 18
 * <http://www.doctrine-project.org>.
 */
romanb's avatar
romanb committed
19

20 21
namespace Doctrine\DBAL\Driver;

22 23 24 25 26 27
/**
 * The PDO implementation of the Statement interface.
 * Used by all PDO-based drivers.
 *
 * @since 2.0
 */
28
class PDOStatement extends \PDOStatement implements Statement
29
{
Benjamin Morel's avatar
Benjamin Morel committed
30
    /**
31
     * Protected constructor.
Benjamin Morel's avatar
Benjamin Morel committed
32
     */
33
    protected function __construct()
Benjamin Morel's avatar
Benjamin Morel committed
34 35
    {
    }
36

Benjamin Morel's avatar
Benjamin Morel committed
37 38 39
    /**
     * {@inheritdoc}
     */
40
    public function setFetchMode($fetchMode, $arg2 = null, $arg3 = null)
41 42 43 44 45
    {
        // This thin wrapper is necessary to shield against the weird signature
        // of PDOStatement::setFetchMode(): even if the second and third
        // parameters are optional, PHP will not let us remove it from this
        // declaration.
46 47 48 49 50 51 52 53 54 55 56 57
        try {
            if ($arg2 === null && $arg3 === null) {
                return parent::setFetchMode($fetchMode);
            }

            if ($arg3 === null) {
                return parent::setFetchMode($fetchMode, $arg2);
            }

            return parent::setFetchMode($fetchMode, $arg2, $arg3);
        } catch (\PDOException $exception) {
            throw new PDOException($exception);
58
        }
59
    }
60 61 62 63

    /**
     * {@inheritdoc}
     */
javer's avatar
javer committed
64
    public function bindValue($param, $value, $type = \PDO::PARAM_STR)
65
    {
66 67 68 69 70
        try {
            return parent::bindValue($param, $value, $type);
        } catch (\PDOException $exception) {
            throw new PDOException($exception);
        }
71 72 73 74 75
    }

    /**
     * {@inheritdoc}
     */
76
    public function bindParam($column, &$variable, $type = \PDO::PARAM_STR, $length = null, $driverOptions = null)
77
    {
78 79 80 81 82
        try {
            return parent::bindParam($column, $variable, $type, $length, $driverOptions);
        } catch (\PDOException $exception) {
            throw new PDOException($exception);
        }
83 84
    }

85 86 87 88 89 90 91 92 93 94 95 96 97 98
    /**
     * {@inheritdoc}
     */
    public function closeCursor()
    {
        try {
            return parent::closeCursor();
        } catch (\PDOException $exception) {
            // Exceptions not allowed by the interface.
            // In case driver implementations do not adhere to the interface, silence exceptions here.
            return true;
        }
    }

99 100 101 102 103
    /**
     * {@inheritdoc}
     */
    public function execute($params = null)
    {
104 105 106 107 108
        try {
            return parent::execute($params);
        } catch (\PDOException $exception) {
            throw new PDOException($exception);
        }
109 110 111 112 113
    }

    /**
     * {@inheritdoc}
     */
javer's avatar
javer committed
114
    public function fetch($fetchMode = null, $cursorOrientation = null, $cursorOffset = null)
115
    {
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
        try {
            if ($fetchMode === null && $cursorOrientation === null && $cursorOffset === null) {
                return parent::fetch();
            }

            if ($cursorOrientation === null && $cursorOffset === null) {
                return parent::fetch($fetchMode);
            }

            if ($cursorOffset === null) {
                return parent::fetch($fetchMode, $cursorOrientation);
            }

            return parent::fetch($fetchMode, $cursorOrientation, $cursorOffset);
        } catch (\PDOException $exception) {
            throw new PDOException($exception);
javer's avatar
javer committed
132
        }
133 134 135 136 137
    }

    /**
     * {@inheritdoc}
     */
javer's avatar
javer committed
138
    public function fetchAll($fetchMode = null, $fetchArgument = null, $ctorArgs = null)
139
    {
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
        try {
            if ($fetchMode === null && $fetchArgument === null && $ctorArgs === null) {
                return parent::fetchAll();
            }

            if ($fetchArgument === null && $ctorArgs === null) {
                return parent::fetchAll($fetchMode);
            }

            if ($ctorArgs === null) {
                return parent::fetchAll($fetchMode, $fetchArgument);
            }

            return parent::fetchAll($fetchMode, $fetchArgument, $ctorArgs);
        } catch (\PDOException $exception) {
            throw new PDOException($exception);
javer's avatar
javer committed
156
        }
157 158 159 160 161 162 163
    }

    /**
     * {@inheritdoc}
     */
    public function fetchColumn($columnIndex = 0)
    {
164 165 166 167 168
        try {
            return parent::fetchColumn($columnIndex);
        } catch (\PDOException $exception) {
            throw new PDOException($exception);
        }
169
    }
170
}