result() result( $type = 'object') : mixed Query result. Acts as a wrapper function for the following functions. Parameters $type Returns mixed — either a result object or array
custom_result_object() custom_result_object( $class_name) : array Custom query result. Parameters $class_name Returns array — of objects
row() row( $n, $type = 'object') : mixed Query result. Acts as a wrapper function for the following functions. Parameters $n $type Returns mixed — either a result object or array
set_row() set_row( $key, $value = NULL) : object Assigns an item into a particular column slot Parameters $key $value Returns object
custom_row_object() custom_row_object( $n, $type) : object Returns a single result row - custom object version Parameters $n $type Returns object
row_object() row_object( $n) : object Returns a single result row - object version Parameters $n Returns object
row_array() row_array( $n) : array Returns a single result row - array version Parameters $n Returns array
first_row() first_row( $type = 'object') : object Returns the "first" row Parameters $type Returns object
last_row() last_row( $type = 'object') : object Returns the "last" row Parameters $type Returns object
next_row() next_row( $type = 'object') : object Returns the "next" row Parameters $type Returns object
previous_row() previous_row( $type = 'object') : object Returns the "previous" row Parameters $type Returns object
num_rows() num_rows() : integer Number of rows in the result set. Oracle doesn't have a graceful way to retun the number of rows so we have to use what amounts to a hack. 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( $n) : array 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 $n Returns array
_fetch_assoc() _fetch_assoc() : array Result - associative array Returns the result set as an array Returns array
_fetch_object() _fetch_object() : object Result - object Returns the result set as an object Returns object