- Timestamp:
- 10/01/08 21:02:13 (3 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
lang/php/misc/Hermit/src/Hermit/resultset/HermitListResultSet.php
r20200 r20387 6 6 */ 7 7 class HermitListResultSet implements HermitResultSet { 8 public function execute(HermitStatement $stmt, HermitValueType $type){8 public function create(HermitStatement $stmt, HermitValueType $type){ 9 9 $type->apply($stmt); 10 10 11 11 $results = array(); 12 while($ obj= $stmt->fetch()){13 $results[] = $ obj;12 while($row = $stmt->fetch()){ 13 $results[] = $row; 14 14 } 15 15 return $results;
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)