Source for file mysql.dbresultset.php

Documentation is available at mysql.dbresultset.php

  1. <?php
  2. /**
  3. @package    jelix
  4. @subpackage db_driver
  5. @author     Croes GĂ©rald, Laurent Jouanneau
  6. @contributor Laurent Jouanneau
  7. @copyright  2001-2005 CopixTeam, 2005-2007 Laurent Jouanneau
  8. *  This class was get originally from the Copix project (CopixDbResultsetMysql, Copix 2.3dev20050901, http://www.copix.org)
  9. *  Few lines of code are still copyrighted 2001-2005 CopixTeam (LGPL licence).
  10. *  Initial authors of this Copix class are Gerald Croes and Laurent Jouanneau,
  11. *  and this class was adapted/improved for Jelix by Laurent Jouanneau
  12. *
  13. @link      http://www.jelix.org
  14. @licence  http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public Licence, see LICENCE file
  15. */
  16.  
  17. /**
  18.  * Couche d'encapsulation des resultset mysql.
  19.  * @package    jelix
  20.  * @subpackage db_driver
  21.  */
  22. class mysqlDbResultSet extends jDbResultSet {
  23.  
  24.     protected function  _fetch (){
  25.         $ret =  mysql_fetch_object ($this->_idResult);
  26.         return $ret;
  27.     }
  28.     protected function _free (){
  29.         return mysql_free_result ($this->_idResult);
  30.     }
  31.     protected function _rewind (){
  32.         return @mysql_data_seek $this->_idResult0);
  33.     }
  34.  
  35.     public function rowCount(){
  36.         return mysql_num_rows($this->_idResult);
  37.     }
  38.  
  39.     public function bindColumn($column&$param $type=null )
  40.       {throw new jException('jelix~db.error.feature.unsupported'array('mysql','bindColumn'))}
  41.     public function bindParam($parameter&$variable $data_type =null$length=null,  $driver_options=null)
  42.       {throw new jException('jelix~db.error.feature.unsupported'array('mysql','bindParam'))}
  43.     public function bindValue($parameter$value$data_type)
  44.       {throw new jException('jelix~db.error.feature.unsupported'array('mysql','bindValue'))}
  45.     public function columnCount()
  46.       return mysql_num_fields($this->_idResult)}
  47.     public function execute($parameters=null)
  48.       {throw new jException('jelix~db.error.feature.unsupported'array('mysql','bindColumn'))}
  49. }
  50. ?>

Documentation generated on Wed, 07 Sep 2011 13:48:23 +0200 by phpDocumentor 1.4.3