PHP Class CI_DB_oci8_result, TastyIgniter

This class extends the parent result class: CI_DB_result
Author: EllisLab Dev Team
Inheritance: extends CI_DB_result
Show file Open project: tastyigniter/tastyigniter

Public Properties

Property Type Description
$commit_mode integer Commit mode flag
$curs_id resource Cursor ID
$limit_used boolean Limit used flag
$stmt_id resource Statement ID

Public Methods

Method Description
__construct ( &$driver_object ) : void Class constructor
field_data ( ) : array Field data
free_result ( ) : void Free the result
list_fields ( ) : array Fetch Field Names
num_fields ( ) : integer Number of fields in the result set

Protected Methods

Method Description
_fetch_assoc ( ) : array Result - associative array
_fetch_object ( string $class_name = 'stdClass' ) : object Result - object

Method Details

__construct() public method

Class constructor
public __construct ( &$driver_object ) : void
return void

_fetch_assoc() protected method

Returns the result set as an array
protected _fetch_assoc ( ) : array
return array

_fetch_object() protected method

Returns the result set as an object
protected _fetch_object ( string $class_name = 'stdClass' ) : object
$class_name string
return object

field_data() public method

Generates an array of objects containing field meta-data
public field_data ( ) : array
return array

free_result() public method

Free the result
public free_result ( ) : void
return void

list_fields() public method

Generates an array of column names
public list_fields ( ) : array
return array

num_fields() public method

Number of fields in the result set
public num_fields ( ) : integer
return integer

Property Details

$commit_mode public property

Commit mode flag
public int $commit_mode
return integer

$curs_id public property

Cursor ID
public resource $curs_id
return resource

$limit_used public property

Limit used flag
public bool $limit_used
return boolean

$stmt_id public property

Statement ID
public resource $stmt_id
return resource