wiki.techinc.nl/includes/libs/rdbms/database/resultwrapper/MssqlResultWrapper.php
Aaron Schulz 60e8d3e16e rdbms: remove "m" member prefix from various classes
Change-Id: Iade8e8f70bb1307b96683d979d7e3650f4107515
2018-02-17 03:58:46 +00:00

76 lines
1.4 KiB
PHP

<?php
namespace Wikimedia\Rdbms;
use stdClass;
class MssqlResultWrapper extends ResultWrapper {
/** @var int|null */
private $seekTo = null;
/**
* @return stdClass|bool
*/
public function fetchObject() {
$res = $this->result;
if ( $this->seekTo !== null ) {
$result = sqlsrv_fetch_object( $res, stdClass::class, [],
SQLSRV_SCROLL_ABSOLUTE, $this->seekTo );
$this->seekTo = null;
} else {
$result = sqlsrv_fetch_object( $res );
}
// Return boolean false when there are no more rows instead of null
if ( $result === null ) {
return false;
}
return $result;
}
/**
* @return array|bool
*/
public function fetchRow() {
$res = $this->result;
if ( $this->seekTo !== null ) {
$result = sqlsrv_fetch_array( $res, SQLSRV_FETCH_BOTH,
SQLSRV_SCROLL_ABSOLUTE, $this->seekTo );
$this->seekTo = null;
} else {
$result = sqlsrv_fetch_array( $res );
}
// Return boolean false when there are no more rows instead of null
if ( $result === null ) {
return false;
}
return $result;
}
/**
* @param int $row
* @return bool
*/
public function seek( $row ) {
$res = $this->result;
// check bounds
$numRows = $this->db->numRows( $res );
$row = intval( $row );
if ( $numRows === 0 ) {
return false;
} elseif ( $row < 0 || $row > $numRows - 1 ) {
return false;
}
// Unlike MySQL, the seek actually happens on the next access
$this->seekTo = $row;
return true;
}
}