Public Member Functions | |
KjwMsResultSet (&$resource) | |
Construct a KjwMsResultSet. | |
destroy () | |
Destructor performing cleanup. | |
getNext () | |
Fetch the current result row and advance pointer to the next. | |
at () | |
Returns at which row the resultset is. | |
size () | |
Returns the number of results in the result set as an integer. | |
seekAbs ($offset) | |
Seek in the resultset to an absolute position. | |
Public Attributes | |
$_resource | |
The MsSQL result set resource. | |
$_pointer | |
A pointer to keep track of the current position. | |
$_end | |
The size of the result set. |
Definition at line 30 of file KjwMsResultSet.php.
KjwMsResultSet::at | ( | ) |
Returns at which row the resultset is.
Reimplemented from KjwResultSet.
Definition at line 63 of file KjwMsResultSet.php.
KjwMsResultSet::destroy | ( | ) |
Destructor performing cleanup.
Don't rely on this being called ever. The user must call it by hand.
Reimplemented from KjwResultSet.
Definition at line 48 of file KjwMsResultSet.php.
KjwMsResultSet::getNext | ( | ) |
Fetch the current result row and advance pointer to the next.
Reimplemented from KjwResultSet.
Definition at line 54 of file KjwMsResultSet.php.
References size().
KjwMsResultSet::KjwMsResultSet | ( | &$ | resource | ) |
Construct a KjwMsResultSet.
$resource | An mssql result set resource. |
Definition at line 40 of file KjwMsResultSet.php.
References KjwResultSet::KjwResultSet().
KjwMsResultSet::seekAbs | ( | $ | offset | ) |
Seek in the resultset to an absolute position.
$offset | The zero-based offset. |
Reimplemented from KjwResultSet.
Definition at line 73 of file KjwMsResultSet.php.
KjwMsResultSet::size | ( | ) |
Returns the number of results in the result set as an integer.
Reimplemented from KjwResultSet.
Definition at line 68 of file KjwMsResultSet.php.
Referenced by getNext().
KjwMsResultSet::$_end |
KjwMsResultSet::$_pointer |
KjwMsResultSet::$_resource |