$custom_result_object $custom_result_object : array<mixed,object> Custom Result Object Type array<mixed,object>
result() result(string $type = 'object') : array Query result. Acts as a wrapper function for the following functions. Parameters string $type 'object', 'array' or a custom class name Returns array
custom_result_object() custom_result_object(string $class_name) : array Custom query result. Parameters string $class_name Returns array
row() row(mixed $n, string $type = 'object') : mixed Row A wrapper method. Parameters mixed $n string $type 'object' or 'array' Returns mixed
set_row() set_row(mixed $key, mixed $value = NULL) : void Assigns an item into a particular column slot Parameters mixed $key mixed $value
custom_row_object() custom_row_object(integer $n, string $type) : object Returns a single result row - custom object version Parameters integer $n string $type Returns object
row_object() row_object(integer $n) : object Returns a single result row - object version Parameters integer $n Returns object
row_array() row_array(integer $n) : array Returns a single result row - array version Parameters integer $n Returns array
first_row() first_row(string $type = 'object') : mixed Returns the "first" row Parameters string $type Returns mixed
last_row() last_row(string $type = 'object') : mixed Returns the "last" row Parameters string $type Returns mixed
next_row() next_row(string $type = 'object') : mixed Returns the "next" row Parameters string $type Returns mixed
previous_row() previous_row(string $type = 'object') : mixed Returns the "previous" row Parameters string $type Returns mixed
unbuffered_row() unbuffered_row(string $type = 'object') : mixed Returns an unbuffered row and move pointer to next row Parameters string $type 'array', 'object' or a custom class name Returns mixed
num_fields() num_fields() : integer Number of fields in the result set Overridden by driver result classes. Returns integer
list_fields() list_fields() : array Fetch Field Names Generates an array of column names Returns array
field_data() field_data() : array Field data Generates an array of objects containing field meta-data Returns array
data_seek() data_seek(integer $n) : boolean Data Seek Moves the internal pointer to the desired offset. We call this internally before fetching results to make sure the result set starts at zero. Parameters integer $n Returns boolean
_fetch_assoc() _fetch_assoc() : array Result - associative array Returns the result set as an array Returns array
_fetch_object() _fetch_object(string $class_name = 'stdClass') : object Result - object Returns the result set as an object Parameters string $class_name Returns object