Etienne Kneuss

home » repository » php » ircbot » libraries » class.DB_mySQL_Results.php
Tree:
school
mp3
php
sample
publications
Math_Derivative
Math_Expression
ircbot
libraries
class.Link_IRC.php
class.DB_mySQL.php
class.Link.php
expt.DB_Exception.php
class.DB_mySQL_Results.php
class.DB_Common_Results.php
class.DB.php
class.DB_Common.php
iface.Observed.php
iface.Observer.php
class.BaseArray.php
class.Bot.php
modules
exceptions
bot.php
plopbot.sql
php.net
images
dump

Source code raw phps

    <?php require_once 'libraries/class.DB_Common_Results.php'; class DB_mySQL_Results extends DB_Common_Results {     protected $_results = array();     protected $_resource;     protected $_numRows;     protected $_counter = 0;     public function __construct($resource)     {         $this->_resource = $resource;         $this->_numRows = mysql_num_rows($resource);        }     public function doFetch($fetch_mode = DB_FETCH_ASSOC)     {         return mysql_fetch_array($this->_resource, $fetch_mode);     }      } ?>

Comments

There is currently no comment here.

Add a comment

Username:

Spam Challenge: 13+15=?

Comment: