Page MenuHomeDevCentral

DatabaseResult.php
No OneTemporary

DatabaseResult.php

<?php
namespace Keruald\Database\Result;
use IteratorAggregate;
/**
* Represents a database result
*/
abstract class DatabaseResult implements IteratorAggregate {
/**
* Gets number of rows in result
*/
public abstract function numRows () : int;
/**
* Fetches a row of the result
* @return array|null An array if there is still a row to read; null if not.
*/
public abstract function fetchRow () : ?array;
}

File Metadata

Mime Type
text/x-php
Expires
Sun, Nov 16, 13:06 (1 d, 15 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3149234
Default Alt Text
DatabaseResult.php (455 B)

Event Timeline