/** * Gets the number of fields in the result set. */ Defined in <ROOT>/g.cam/system/Database/MySQLi/Result.php:32
/** * Generates an array of column names in the result set. */ Defined in <ROOT>/g.cam/system/Database/MySQLi/Result.php:40
/** * Generates an array of objects representing field meta-data. */ Defined in <ROOT>/g.cam/system/Database/MySQLi/Result.php:55
/** * Frees the current result. * * @return void */ Defined in <ROOT>/g.cam/system/Database/MySQLi/Result.php:111
/** * Moves the internal pointer to the desired offset. This is called * internally before fetching results to make sure the result set * starts at zero. * * @return bool */ Defined in <ROOT>/g.cam/system/Database/MySQLi/Result.php:126
/** * Returns the result set as an array. * * Overridden by driver classes. * * @return array|false|null */ Defined in <ROOT>/g.cam/system/Database/MySQLi/Result.php:138
/** * Returns the result set as an object. * * Overridden by child classes. * * @return Entity|false|object|stdClass */ Defined in <ROOT>/g.cam/system/Database/MySQLi/Result.php:150
/** * Returns the number of rows in the resultID (i.e., mysqli_result object) */ Defined in <ROOT>/g.cam/system/Database/MySQLi/Result.php:162
/** * Constructor * * @param TConnection $connID * @param TResult $resultID */ Inherited from CodeIgniter\Database\BaseResult Defined in <ROOT>/g.cam/system/Database/BaseResult.php:89
/** * Retrieve the results of the query. Typically an array of * individual data rows, which can be either an 'array', an * 'object', or a custom class name. * * @param string $type The row type. Either 'array', 'object', or a class name to use */ Inherited from CodeIgniter\Database\BaseResult Defined in <ROOT>/g.cam/system/Database/BaseResult.php:102
/** * Returns the results as an array of custom objects. * * @param class-string $className * * @return array */ Inherited from CodeIgniter\Database\BaseResult Defined in <ROOT>/g.cam/system/Database/BaseResult.php:122
/** * Returns the results as an array of arrays. * * If no results, an empty array is returned. */ Inherited from CodeIgniter\Database\BaseResult Defined in <ROOT>/g.cam/system/Database/BaseResult.php:173
/** * Returns the results as an array of objects. * * If no results, an empty array is returned. * * @return list<stdClass> */ Inherited from CodeIgniter\Database\BaseResult Defined in <ROOT>/g.cam/system/Database/BaseResult.php:212
/** * Wrapper object to return a row as either an array, an object, or * a custom class. * * If the row doesn't exist, returns null. * * @template T of object * * @param int|string $n The index of the results to return, or column name. * @param 'array'|'object'|class-string<T> $type The type of result object. 'array', 'object' or class name. * * @return ($n is string ? float|int|string|null : ($type is 'object' ? stdClass|null : ($type is 'array' ? array|null : T|null))) */ Inherited from CodeIgniter\Database\BaseResult Defined in <ROOT>/g.cam/system/Database/BaseResult.php:261
/** * Returns a row as a custom class instance. * * If the row doesn't exist, returns null. * * @template T of object * * @param int $n The index of the results to return. * @param class-string<T> $className * * @return T|null */ Inherited from CodeIgniter\Database\BaseResult Defined in <ROOT>/g.cam/system/Database/BaseResult.php:301
/** * Returns a single row from the results as an array. * * If row doesn't exist, returns null. * * @return array|null */ Inherited from CodeIgniter\Database\BaseResult Defined in <ROOT>/g.cam/system/Database/BaseResult.php:325
/** * Returns a single row from the results as an object. * * If row doesn't exist, returns null. * * @return object|stdClass|null */ Inherited from CodeIgniter\Database\BaseResult Defined in <ROOT>/g.cam/system/Database/BaseResult.php:346
/** * Assigns an item into a particular column slot. * * @param array|string $key * @param array|object|stdClass|null $value * * @return void */ Inherited from CodeIgniter\Database\BaseResult Defined in <ROOT>/g.cam/system/Database/BaseResult.php:368
/** * Returns the "first" row of the current results. * * @return array|object|null */ Inherited from CodeIgniter\Database\BaseResult Defined in <ROOT>/g.cam/system/Database/BaseResult.php:393
/** * Returns the "last" row of the current results. * * @return array|object|null */ Inherited from CodeIgniter\Database\BaseResult Defined in <ROOT>/g.cam/system/Database/BaseResult.php:405
/** * Returns the "next" row of the current results. * * @return array|object|null */ Inherited from CodeIgniter\Database\BaseResult Defined in <ROOT>/g.cam/system/Database/BaseResult.php:417
/** * Returns the "previous" row of the current results. * * @return array|object|null */ Inherited from CodeIgniter\Database\BaseResult Defined in <ROOT>/g.cam/system/Database/BaseResult.php:432
/** * Returns an unbuffered row and move the pointer to the next row. * * @return array|object|null */ Inherited from CodeIgniter\Database\BaseResult Defined in <ROOT>/g.cam/system/Database/BaseResult.php:451
Inherited from CodeIgniter\Database\BaseResult Defined in <ROOT>/g.cam/system/Database/BaseResult.php:484