Show
Ignore:
Timestamp:
10/01/08 21:02:13 (3 months ago)
Author:
nowelium
Message:
 
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/php/misc/Hermit/src/Hermit/resultset/HermitListResultSet.php

    r20200 r20387  
    66 */ 
    77class HermitListResultSet implements HermitResultSet { 
    8     public function execute(HermitStatement $stmt, HermitValueType $type){ 
     8    public function create(HermitStatement $stmt, HermitValueType $type){ 
    99        $type->apply($stmt); 
    1010         
    1111        $results = array(); 
    12         while($obj = $stmt->fetch()){ 
    13             $results[] = $obj; 
     12        while($row = $stmt->fetch()){ 
     13            $results[] = $row; 
    1414        } 
    1515        return $results;