MediaWiki
1.28.3
|
Result wrapper for grabbing data queried from an IDatabase object. More...
Public Member Functions | |
__construct (IDatabase $db=null, $result) | |
Create a row iterator from a result resource and an optional Database object. More... | |
current () | |
fetchObject () | |
Fetch the next row from the given result object, in object form. More... | |
fetchRow () | |
Fetch the next row from the given result object, in associative array form. More... | |
free () | |
Free a result object. More... | |
key () | |
next () | |
numRows () | |
Get the number of rows in a result object. More... | |
rewind () | |
seek ($row) | |
Change the position of the cursor in a result object. More... | |
valid () | |
Public Attributes | |
resource array null | $result |
Optional underlying result handle for subclass usage. More... | |
Protected Attributes | |
stdClass null | $currentRow = null |
IDatabase null | $db |
int | $pos = 0 |
Private Member Functions | |
getDB () | |
Result wrapper for grabbing data queried from an IDatabase object.
Note that using the Iterator methods in combination with the non-Iterator DB result iteration functions may cause rows to be skipped or repeated.
By default, this will use the iteration methods of the IDatabase handle if provided. Subclasses can override methods to make it solely work on the result resource instead. If no database is provided, and the subclass does not override the DB iteration methods, then a RuntimeException will be thrown when iteration is attempted.
The result resource field should not be accessed from non-Database related classes. It is database class specific and is stored here to associate iterators with queries.
Definition at line 18 of file ResultWrapper.php.
ResultWrapper::__construct | ( | IDatabase | $db = null , |
$result | |||
) |
Create a row iterator from a result resource and an optional Database object.
Only Database-related classes should construct ResultWrapper. Other code may use the FakeResultWrapper subclass for convenience or compatibility shims, however.
IDatabase | null | $db | Optional database handle |
ResultWrapper | array | resource | $result | Optional underlying result handle |
Definition at line 39 of file ResultWrapper.php.
ResultWrapper::current | ( | ) |
Definition at line 127 of file ResultWrapper.php.
References $currentRow, and next().
Referenced by valid().
ResultWrapper::fetchObject | ( | ) |
Fetch the next row from the given result object, in object form.
Fields can be retrieved with $row->fieldname, with fields acting like member variables. If no more rows are available, false is returned.
DBUnexpectedError | Thrown if the database returns an error |
Definition at line 65 of file ResultWrapper.php.
References getDB().
Referenced by IndexPager\extractResultInfo(), and next().
ResultWrapper::fetchRow | ( | ) |
Fetch the next row from the given result object, in associative array form.
Fields are retrieved with $row['fieldname']. If no more rows are available, false is returned.
DBUnexpectedError | Thrown if the database returns an error |
Definition at line 76 of file ResultWrapper.php.
References getDB().
Referenced by IndexPager\extractResultInfo().
ResultWrapper::free | ( | ) |
Free a result object.
This either saves memory in PHP (buffered queries) or on the server (unbuffered queries). In general, queries are not large enough in result sets for this to be worth calling.
Definition at line 96 of file ResultWrapper.php.
|
private |
RuntimeException |
Definition at line 108 of file ResultWrapper.php.
References $db.
Referenced by fetchObject(), fetchRow(), numRows(), rewind(), and seek().
ResultWrapper::key | ( | ) |
ResultWrapper::next | ( | ) |
Definition at line 145 of file ResultWrapper.php.
References $currentRow, and fetchObject().
Referenced by current().
ResultWrapper::numRows | ( | ) |
Get the number of rows in a result object.
Definition at line 53 of file ResultWrapper.php.
References getDB().
Referenced by IndexPager\extractResultInfo(), and rewind().
ResultWrapper::rewind | ( | ) |
Definition at line 116 of file ResultWrapper.php.
ResultWrapper::seek | ( | $row | ) |
Change the position of the cursor in a result object.
See mysql_data_seek()
int | $row |
Definition at line 86 of file ResultWrapper.php.
References getDB().
Referenced by IndexPager\extractResultInfo().
ResultWrapper::valid | ( | ) |
Definition at line 152 of file ResultWrapper.php.
References current().
|
protected |
Definition at line 28 of file ResultWrapper.php.
Referenced by current(), FakeResultWrapper\fetchObject(), FakeResultWrapper\fetchRow(), and next().
|
protected |
Definition at line 23 of file ResultWrapper.php.
Referenced by __construct(), and getDB().
|
protected |
Definition at line 26 of file ResultWrapper.php.
Referenced by FakeResultWrapper\fetchRow(), and key().
resource array null ResultWrapper::$result |
Optional underlying result handle for subclass usage.
Definition at line 20 of file ResultWrapper.php.
Referenced by __construct(), MssqlResultWrapper\fetchObject(), MssqlResultWrapper\fetchRow(), and MssqlResultWrapper\seek().