Source for file Interface.php

Documentation is available at Interface.php

  1. <?php
  2. /*
  3.  *  $Id: Interface.php 1080 2007-02-10 18:17:08Z romanb $
  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: 1080 $
  31.  */
  32. {    
  33.     /**
  34.      * bindColumn
  35.      * Bind a column to a PHP variable
  36.      *
  37.      * @param mixed $column         Number of the column (1-indexed) or name of the column in the result set.
  38.      *                               If using the column name, be aware that the name should match
  39.      *                               the case of the column, as returned by the driver.
  40.      * @param string $param         Name of the PHP variable to which the column will be bound.
  41.      * @param integer $type         Data type of the parameter, specified by the Doctrine::PARAM_* constants.
  42.      * @return boolean              Returns TRUE on success or FALSE on failure
  43.      */
  44.     public function bindColumn($column$param$type null);
  45.     /**
  46.      * bindValue
  47.      * Binds a value to a corresponding named or question mark
  48.      * placeholder in the SQL statement that was use to prepare the statement.
  49.      *
  50.      * @param mixed $param          Parameter identifier. For a prepared statement using named placeholders,
  51.      *                               this will be a parameter name of the form :name. For a prepared statement
  52.      *                               using question mark placeholders, this will be the 1-indexed position of the parameter
  53.      *
  54.      * @param mixed $value          The value to bind to the parameter.
  55.      * @param integer $type         Explicit data type for the parameter using the Doctrine::PARAM_* constants.
  56.      *
  57.      * @return boolean              Returns TRUE on success or FALSE on failure.
  58.      */
  59.     public function bindValue($param$value$type null);
  60.     /**
  61.      * bindParam
  62.      * Binds a PHP variable to a corresponding named or question mark placeholder in the
  63.      * SQL statement that was use to prepare the statement. Unlike Doctrine_Adapter_Statement_Interface->bindValue(),
  64.      * the variable is bound as a reference and will only be evaluated at the time
  65.      * that Doctrine_Adapter_Statement_Interface->execute() is called.
  66.      *
  67.      * Most parameters are input parameters, that is, parameters that are
  68.      * used in a read-only fashion to build up the query. Some drivers support the invocation
  69.      * of stored procedures that return data as output parameters, and some also as input/output
  70.      * parameters that both send in data and are updated to receive it.
  71.      *
  72.      * @param mixed $param          Parameter identifier. For a prepared statement using named placeholders,
  73.      *                               this will be a parameter name of the form :name. For a prepared statement
  74.      *                               using question mark placeholders, this will be the 1-indexed position of the parameter
  75.      *
  76.      * @param mixed $variable       Name of the PHP variable to bind to the SQL statement parameter.
  77.      *
  78.      * @param integer $type         Explicit data type for the parameter using the Doctrine::PARAM_* constants. To return
  79.      *                               an INOUT parameter from a stored procedure, use the bitwise OR operator to set the
  80.      *                               Doctrine::PARAM_INPUT_OUTPUT bits for the data_type parameter.
  81.      *
  82.      * @param integer $length       Length of the data type. To indicate that a parameter is an OUT parameter
  83.      *                               from a stored procedure, you must explicitly set the length.
  84.      * @param mixed $driverOptions 
  85.      * @return boolean              Returns TRUE on success or FALSE on failure.
  86.      */
  87.     public function bindParam($column$variable$type null$length null$driverOptions array());
  88.     /**
  89.      * closeCursor
  90.      * Closes the cursor, enabling the statement to be executed again.
  91.      *
  92.      * @return boolean              Returns TRUE on success or FALSE on failure.
  93.      */
  94.     public function closeCursor();
  95.     /** 
  96.      * columnCount
  97.      * Returns the number of columns in the result set
  98.      *
  99.      * @return integer              Returns the number of columns in the result set represented
  100.      *                               by the Doctrine_Adapter_Statement_Interface object. If there is no result set,
  101.      *                               this method should return 0.
  102.      */
  103.     public function columnCount();
  104.     /**
  105.      * errorCode
  106.      * Fetch the SQLSTATE associated with the last operation on the statement handle
  107.      *
  108.      * @see Doctrine_Adapter_Interface::errorCode()
  109.      * @return string       error code string
  110.      */
  111.     public function errorCode();
  112.     /**
  113.      * errorInfo
  114.      * Fetch extended error information associated with the last operation on the statement handle
  115.      *
  116.      * @see Doctrine_Adapter_Interface::errorInfo()
  117.      * @return array        error info array
  118.      */
  119.     public function errorInfo();
  120.     /**
  121.      * execute
  122.      * Executes a prepared statement
  123.      *
  124.      * If the prepared statement included parameter markers, you must either:
  125.      * call PDOStatement->bindParam() to bind PHP variables to the parameter markers:
  126.      * bound variables pass their value as input and receive the output value,
  127.      * if any, of their associated parameter markers or pass an array of input-only
  128.      * parameter values
  129.      *
  130.      *
  131.      * @param array $params             An array of values with as many elements as there are
  132.      *                                   bound parameters in the SQL statement being executed.
  133.      * @return boolean                  Returns TRUE on success or FALSE on failure.
  134.      */
  135.     public function execute($params null);
  136.     /**
  137.      * fetch
  138.      *
  139.      * @see Doctrine::FETCH_* constants
  140.      * @param integer $fetchStyle           Controls how the next row will be returned to the caller.
  141.      *                                       This value must be one of the Doctrine::FETCH_* constants,
  142.      *                                       defaulting to Doctrine::FETCH_BOTH
  143.      *
  144.      * @param integer $cursorOrientation    For a PDOStatement object representing a scrollable cursor,
  145.      *                                       this value determines which row will be returned to the caller.
  146.      *                                       This value must be one of the Doctrine::FETCH_ORI_* constants, defaulting to
  147.      *                                       Doctrine::FETCH_ORI_NEXT. To request a scrollable cursor for your
  148.      *                                       Doctrine_Adapter_Statement_Interface object,
  149.      *                                       you must set the Doctrine::ATTR_CURSOR attribute to Doctrine::CURSOR_SCROLL when you
  150.      *                                       prepare the SQL statement with Doctrine_Adapter_Interface->prepare().
  151.      *
  152.      * @param integer $cursorOffset         For a Doctrine_Adapter_Statement_Interface object representing a scrollable cursor for which the
  153.      *                                       $cursorOrientation parameter is set to Doctrine::FETCH_ORI_ABS, this value specifies
  154.      *                                       the absolute number of the row in the result set that shall be fetched.
  155.      *                                      
  156.      *                                       For a Doctrine_Adapter_Statement_Interface object representing a scrollable cursor for
  157.      *                                       which the $cursorOrientation parameter is set to Doctrine::FETCH_ORI_REL, this value
  158.      *                                       specifies the row to fetch relative to the cursor position before
  159.      *                                       Doctrine_Adapter_Statement_Interface->fetch() was called.
  160.      *
  161.      * @return mixed 
  162.      */
  163.     public function fetch($fetchStyle Doctrine::FETCH_BOTH,
  164.                           $cursorOrientation Doctrine::FETCH_ORI_NEXT,
  165.                           $cursorOffset null);
  166.     /**
  167.      * fetchAll
  168.      * Returns an array containing all of the result set rows
  169.      *
  170.      * @param integer $fetchStyle           Controls how the next row will be returned to the caller.
  171.      *                                       This value must be one of the Doctrine::FETCH_* constants,
  172.      *                                       defaulting to Doctrine::FETCH_BOTH
  173.      *
  174.      * @param integer $columnIndex          Returns the indicated 0-indexed column when the value of $fetchStyle is
  175.      *                                       Doctrine::FETCH_COLUMN. Defaults to 0.
  176.      *
  177.      * @return array 
  178.      */
  179.     public function fetchAll($fetchStyle Doctrine::FETCH_BOTH);
  180.     /**
  181.      * fetchColumn
  182.      * Returns a single column from the next row of a
  183.      * result set or FALSE if there are no more rows.
  184.      *
  185.      * @param integer $columnIndex          0-indexed number of the column you wish to retrieve from the row. If no
  186.      *                                       value is supplied, Doctrine_Adapter_Statement_Interface->fetchColumn()
  187.      *                                       fetches the first column.
  188.      *
  189.      * @return string                       returns a single column in the next row of a result set.
  190.      */
  191.     public function fetchColumn($columnIndex 0);
  192.     /**
  193.      * fetchObject
  194.      * Fetches the next row and returns it as an object.
  195.      *
  196.      * Fetches the next row and returns it as an object. This function is an alternative to
  197.      * Doctrine_Adapter_Statement_Interface->fetch() with Doctrine::FETCH_CLASS or Doctrine::FETCH_OBJ style.
  198.      *
  199.      * @param string $className             Name of the created class, defaults to stdClass.
  200.      * @param array $args                   Elements of this array are passed to the constructor.
  201.      *
  202.      * @return mixed                        an instance of the required class with property names that correspond
  203.      *                                       to the column names or FALSE in case of an error.
  204.      */
  205.     public function fetchObject($className 'stdClass'$args array());
  206.     /**
  207.      * getAttribute
  208.      * Retrieve a statement attribute
  209.      *
  210.      * @param integer $attribute 
  211.      * @see Doctrine::ATTR_* constants
  212.      * @return mixed                        the attribute value
  213.      */
  214.     public function getAttribute($attribute);
  215.     /**
  216.      * getColumnMeta
  217.      * Returns metadata for a column in a result set
  218.      *
  219.      * @param integer $column               The 0-indexed column in the result set.
  220.      *
  221.      * @return array                        Associative meta data array with the following structure:
  222.      *
  223.      *           native_type                 The PHP native type used to represent the column value.
  224.      *           driver:decl_                type The SQL type used to represent the column value in the database. If the column in the result set is the result of a function, this value is not returned by PDOStatement->getColumnMeta().
  225.      *           flags                       Any flags set for this column.
  226.      *           name                        The name of this column as returned by the database.
  227.      *           len                         The length of this column. Normally -1 for types other than floating point decimals.
  228.      *           precision                   The numeric precision of this column. Normally 0 for types other than floating point decimals.
  229.      *           pdo_type                    The type of this column as represented by the PDO::PARAM_* constants.
  230.      */
  231.     public function getColumnMeta($column);
  232.     /**
  233.      * nextRowset
  234.      * Advances to the next rowset in a multi-rowset statement handle
  235.      * 
  236.      * Some database servers support stored procedures that return more than one rowset
  237.      * (also known as a result set). The nextRowset() method enables you to access the second
  238.      * and subsequent rowsets associated with a PDOStatement object. Each rowset can have a
  239.      * different set of columns from the preceding rowset.
  240.      *
  241.      * @return boolean                      Returns TRUE on success or FALSE on failure.
  242.      */
  243.     public function nextRowset();
  244.     /**
  245.      * rowCount
  246.      * rowCount() returns the number of rows affected by the last DELETE, INSERT, or UPDATE statement
  247.      * executed by the corresponding object.
  248.      *
  249.      * If the last SQL statement executed by the associated Statement object was a SELECT statement,
  250.      * some databases may return the number of rows returned by that statement. However,
  251.      * this behaviour is not guaranteed for all databases and should not be
  252.      * relied on for portable applications.
  253.      *
  254.      * @return integer                      Returns the number of rows.
  255.      */
  256.     public function rowCount();
  257.     /**
  258.      * setAttribute
  259.      * Set a statement attribute
  260.      *
  261.      * @param integer $attribute 
  262.      * @param mixed $value                  the value of given attribute
  263.      * @return boolean                      Returns TRUE on success or FALSE on failure.
  264.      */
  265.     public function setAttribute($attribute$value);
  266.     /**
  267.      * setFetchMode
  268.      * Set the default fetch mode for this statement
  269.      *
  270.      * @param integer $mode                 The fetch mode must be one of the Doctrine::FETCH_* constants.
  271.      * @return boolean                      Returns 1 on success or FALSE on failure.
  272.      */
  273.     public function setFetchMode($mode$arg1 null$arg2 null);
  274. }