PHP Class CI_DB_sqlite3_result, TastyIgniter

Inheritance: extends CI_DB_result
Afficher le fichier Open project: tastyigniter/tastyigniter

Méthodes publiques

Méthode Description
data_seek ( integer $n ) : array Data Seek
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

Méthodes protégées

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

Method Details

_fetch_assoc() protected méthode

Returns the result set as an array
protected _fetch_assoc ( ) : array
Résultat array

_fetch_object() protected méthode

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

data_seek() public méthode

Moves the internal pointer to the desired offset. We call this internally before fetching results to make sure the result set starts at zero.
public data_seek ( integer $n ) : array
$n integer (ignored)
Résultat array

field_data() public méthode

Generates an array of objects containing field meta-data
public field_data ( ) : array
Résultat array

free_result() public méthode

Free the result
public free_result ( ) : void
Résultat void

list_fields() public méthode

Generates an array of column names
public list_fields ( ) : array
Résultat array

num_fields() public méthode

Number of fields in the result set
public num_fields ( ) : integer
Résultat integer