Source for file Statement.php

Documentation is available at Statement.php

  1. <?php
  2. /*
  3.  *  $Id: Statement.php 1917 2007-07-01 11:27:45Z zYne $
  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.phpdoctrine.com>.
  20.  */
  21. /**
  22.  * Doctrine_Adapter_Statement
  23.  *
  24.  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
  25.  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
  26.  * @package     Doctrine
  27.  * @category    Object Relational Mapping
  28.  * @link        www.phpdoctrine.com
  29.  * @since       1.0
  30.  * @version     $Revision: 1917 $
  31.  */
  32. {
  33.     public function bindValue($no$value)
  34.     {
  35.     }
  36.     /**
  37.      * fetch
  38.      *
  39.      * @see Doctrine::FETCH_* constants
  40.      * @param integer $fetchStyle           Controls how the next row will be returned to the caller.
  41.      *                                       This value must be one of the Doctrine::FETCH_* constants,
  42.      *                                       defaulting to Doctrine::FETCH_BOTH
  43.      *
  44.      * @param integer $cursorOrientation    For a PDOStatement object representing a scrollable cursor,
  45.      *                                       this value determines which row will be returned to the caller.
  46.      *                                       This value must be one of the Doctrine::FETCH_ORI_* constants, defaulting to
  47.      *                                       Doctrine::FETCH_ORI_NEXT. To request a scrollable cursor for your
  48.      *                                       Doctrine_Adapter_Statement_Interface object,
  49.      *                                       you must set the Doctrine::ATTR_CURSOR attribute to Doctrine::CURSOR_SCROLL when you
  50.      *                                       prepare the SQL statement with Doctrine_Adapter_Interface->prepare().
  51.      *
  52.      * @param integer $cursorOffset         For a Doctrine_Adapter_Statement_Interface object representing a scrollable cursor for which the
  53.      *                                       $cursorOrientation parameter is set to Doctrine::FETCH_ORI_ABS, this value specifies
  54.      *                                       the absolute number of the row in the result set that shall be fetched.
  55.      *                                      
  56.      *                                       For a Doctrine_Adapter_Statement_Interface object representing a scrollable cursor for
  57.      *                                       which the $cursorOrientation parameter is set to Doctrine::FETCH_ORI_REL, this value
  58.      *                                       specifies the row to fetch relative to the cursor position before
  59.      *                                       Doctrine_Adapter_Statement_Interface->fetch() was called.
  60.      *
  61.      * @return mixed 
  62.      */
  63.     public function fetch()
  64.     {
  65.     }
  66.     public function nextRowset()
  67.     {
  68.     }
  69.     public function execute()
  70.     {
  71.     }
  72.     public function errorCode()
  73.     {
  74.     }
  75.     public function errorInfo()
  76.     {
  77.     }
  78.     public function rowCount()
  79.     {
  80.     }
  81.     public function setFetchMode($mode)
  82.     {
  83.     }
  84.     public function columnCount()
  85.     {
  86.     }
  87. }