123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- <?php
- defined('BASEPATH') OR exit('No direct script access allowed');
- class CI_DB_mysqli_result extends CI_DB_result {
-
- public function num_rows()
- {
- return is_int($this->num_rows)
- ? $this->num_rows
- : $this->num_rows = $this->result_id->num_rows;
- }
-
-
- public function num_fields()
- {
- return $this->result_id->field_count;
- }
-
-
- public function list_fields()
- {
- $field_names = array();
- $this->result_id->field_seek(0);
- while ($field = $this->result_id->fetch_field())
- {
- $field_names[] = $field->name;
- }
- return $field_names;
- }
-
-
- public function field_data()
- {
- $retval = array();
- $field_data = $this->result_id->fetch_fields();
- for ($i = 0, $c = count($field_data); $i < $c; $i++)
- {
- $retval[$i] = new stdClass();
- $retval[$i]->name = $field_data[$i]->name;
- $retval[$i]->type = static::_get_field_type($field_data[$i]->type);
- $retval[$i]->max_length = $field_data[$i]->max_length;
- $retval[$i]->primary_key = (int) ($field_data[$i]->flags & MYSQLI_PRI_KEY_FLAG);
- $retval[$i]->default = $field_data[$i]->def;
- }
- return $retval;
- }
-
-
- private static function _get_field_type($type)
- {
- static $map;
- isset($map) OR $map = array(
- MYSQLI_TYPE_DECIMAL => 'decimal',
- MYSQLI_TYPE_BIT => 'bit',
- MYSQLI_TYPE_TINY => 'tinyint',
- MYSQLI_TYPE_SHORT => 'smallint',
- MYSQLI_TYPE_INT24 => 'mediumint',
- MYSQLI_TYPE_LONG => 'int',
- MYSQLI_TYPE_LONGLONG => 'bigint',
- MYSQLI_TYPE_FLOAT => 'float',
- MYSQLI_TYPE_DOUBLE => 'double',
- MYSQLI_TYPE_TIMESTAMP => 'timestamp',
- MYSQLI_TYPE_DATE => 'date',
- MYSQLI_TYPE_TIME => 'time',
- MYSQLI_TYPE_DATETIME => 'datetime',
- MYSQLI_TYPE_YEAR => 'year',
- MYSQLI_TYPE_NEWDATE => 'date',
- MYSQLI_TYPE_INTERVAL => 'interval',
- MYSQLI_TYPE_ENUM => 'enum',
- MYSQLI_TYPE_SET => 'set',
- MYSQLI_TYPE_TINY_BLOB => 'tinyblob',
- MYSQLI_TYPE_MEDIUM_BLOB => 'mediumblob',
- MYSQLI_TYPE_BLOB => 'blob',
- MYSQLI_TYPE_LONG_BLOB => 'longblob',
- MYSQLI_TYPE_STRING => 'char',
- MYSQLI_TYPE_VAR_STRING => 'varchar',
- MYSQLI_TYPE_GEOMETRY => 'geometry'
- );
- return isset($map[$type]) ? $map[$type] : $type;
- }
-
-
- public function free_result()
- {
- if (is_object($this->result_id))
- {
- $this->result_id->free();
- $this->result_id = FALSE;
- }
- }
-
-
- public function data_seek($n = 0)
- {
- return $this->result_id->data_seek($n);
- }
-
-
- protected function _fetch_assoc()
- {
- return $this->result_id->fetch_assoc();
- }
-
-
- protected function _fetch_object($class_name = 'stdClass')
- {
- return $this->result_id->fetch_object($class_name);
- }
- }
|