-
Notifications
You must be signed in to change notification settings - Fork 1
SYSTEM DB ResultMysqli
Ulf Gebhardt edited this page Jul 25, 2017
·
4 revisions
Result Class provided by System to hold Database Query Result Ressources of MYSQL Querys.
- Class name: ResultMysqli
- Namespace: SYSTEM\DB
- Parent class: SYSTEM\DB\Result
private mixed $res = NULL
ressource Variable to store Database Result-ressource
- Visibility: private
private mixed $current = NULL
ressource Variable to store current Line either as array or object
- Visibility: private
mixed SYSTEM\DB\ResultMysqli::__construct(\SYSTEM\DB\ressource $res)
Construct the Resultset with a database ressource
- Visibility: public
- $res SYSTEM\DB\ressource - <p>Ressource of the Database Result-Set</p>
mixed SYSTEM\DB\ResultMysqli::__destruct()
Close Resultset upon destruction
- Visibility: public
null SYSTEM\DB\Result::close()
Closes the Resultset
- Visibility: public
- This method is abstract.
- This method is defined by SYSTEM\DB\Result
integer SYSTEM\DB\Result::count()
Counts the Lines in the Resultset
- Visibility: public
- This method is abstract.
- This method is defined by SYSTEM\DB\Result
integer SYSTEM\DB\Result::affectedRows()
Counts the affected lines in the Resultset
- Visibility: public
- This method is abstract.
- This method is defined by SYSTEM\DB\Result
array SYSTEM\DB\Result::next(boolean $object)
Returns the next line in the Resultset
- Visibility: public
- This method is abstract.
- This method is defined by SYSTEM\DB\Result
- $object boolean - <p>Determines if the result will be an object or array</p>
boolean SYSTEM\DB\Result::seek(integer $row_number)
Seeks an amount of lines within the Resultset
- Visibility: public
- This method is abstract.
- This method is defined by SYSTEM\DB\Result
- $row_number integer - <p>Lines to seek over</p>