Show
Ignore:
Timestamp:
03/07/2008 06:06:24 PM (10 months ago)
Author:
Shadowhand
Message:

Added as_array() to all Database_Result classes for consistency.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/libraries/drivers/Database/Pdosqlite.php

    r2208 r2232  
    395395        } 
    396396 
     397        public function as_array($object = NULL, $type = PDO::FETCH_ASSOC) 
     398        { 
     399                return $this->result_array($object, $type); 
     400        } 
     401 
    397402        public function result_array($object = NULL, $type = PDO::FETCH_ASSOC) 
    398403        {