source: pro-violet-viettel/sourcecode/application/libraries/Doctrine/DBAL/Driver/PDOStatement.php @ 345

Last change on this file since 345 was 345, checked in by quyenla, 11 years ago

collaborator page

File size: 1.6 KB
RevLine 
[345]1<?php
2/*
3 *  $Id: Interface.php 3882 2008-02-22 18:11:35Z jwage $
4 *
5 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
6 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
7 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
8 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
9 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
10 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
11 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
12 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
13 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
14 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
15 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16 *
17 * This software consists of voluntary contributions made by many individuals
18 * and is licensed under the LGPL. For more information, see
19 * <http://www.doctrine-project.org>.
20 */
21
22namespace Doctrine\DBAL\Driver;
23
24/**
25 * The PDO implementation of the Statement interface.
26 * Used by all PDO-based drivers.
27 *
28 * @since 2.0
29 */
30class PDOStatement extends \PDOStatement implements Statement
31{
32    private function __construct() {}
33
34    public function setFetchMode($fetchStyle, $params = NULL)
35    {
36        // This thin wrapper is necessary to shield against the weird signature
37        // of PDOStatement::setFetchMode(): even if the second and third
38        // parameters are optional, PHP will not let us remove it from this
39        // declaration.
40        return parent::setFetchMode($fetchStyle);
41    }
42}
Note: See TracBrowser for help on using the repository browser.