blob: 0a50cccacd3bc76fddecf13190983ef3b42b7704 [file] [log] [blame]
Andrey Andreev1ff49e02012-01-27 11:30:41 +02001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Greg Aker741de1c2010-11-10 14:52:57 -06005 * An open source application development framework for PHP 5.1.6 or newer
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05007 * NOTICE OF LICENSE
Andrey Andreev1ff49e02012-01-27 11:30:41 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreev1ff49e02012-01-27 11:30:41 +020010 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -050011 * This source file is subject to the Open Software License (OSL 3.0) that is
12 * bundled with this package in the files license.txt / license.rst. It is
13 * also available through the world wide web at this URL:
14 * http://opensource.org/licenses/OSL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
Derek Allard2067d1a2008-11-13 22:59:24 +000019 * @package CodeIgniter
Derek Jonesf4a4bd82011-10-20 12:18:42 -050020 * @author EllisLab Dev Team
Greg Aker0defe5d2012-01-01 18:46:41 -060021 * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
Derek Allard2067d1a2008-11-13 22:59:24 +000023 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
27
Derek Allard2067d1a2008-11-13 22:59:24 +000028/**
29 * MySQLi Result Class
30 *
31 * This class extends the parent result class: CI_DB_result
32 *
33 * @category Database
Derek Jonesf4a4bd82011-10-20 12:18:42 -050034 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000035 * @link http://codeigniter.com/user_guide/database/
36 */
37class CI_DB_mysqli_result extends CI_DB_result {
Barry Mienydd671972010-10-04 16:33:58 +020038
Derek Allard2067d1a2008-11-13 22:59:24 +000039 /**
40 * Number of rows in the result set
41 *
Andrey Andreev1ff49e02012-01-27 11:30:41 +020042 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +000043 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +020044 public function num_rows()
Derek Allard2067d1a2008-11-13 22:59:24 +000045 {
46 return @mysqli_num_rows($this->result_id);
47 }
Barry Mienydd671972010-10-04 16:33:58 +020048
Derek Allard2067d1a2008-11-13 22:59:24 +000049 // --------------------------------------------------------------------
50
51 /**
52 * Number of fields in the result set
53 *
Andrey Andreev1ff49e02012-01-27 11:30:41 +020054 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +000055 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +020056 public function num_fields()
Derek Allard2067d1a2008-11-13 22:59:24 +000057 {
58 return @mysqli_num_fields($this->result_id);
59 }
60
61 // --------------------------------------------------------------------
62
63 /**
64 * Fetch Field Names
65 *
66 * Generates an array of column names
67 *
Derek Allard2067d1a2008-11-13 22:59:24 +000068 * @return array
69 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +020070 public function list_fields()
Derek Allard2067d1a2008-11-13 22:59:24 +000071 {
72 $field_names = array();
73 while ($field = mysqli_fetch_field($this->result_id))
74 {
75 $field_names[] = $field->name;
76 }
Barry Mienydd671972010-10-04 16:33:58 +020077
Derek Allard2067d1a2008-11-13 22:59:24 +000078 return $field_names;
79 }
80
81 // --------------------------------------------------------------------
82
83 /**
84 * Field data
85 *
86 * Generates an array of objects containing field meta-data
87 *
Derek Allard2067d1a2008-11-13 22:59:24 +000088 * @return array
89 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +020090 public function field_data()
Derek Allard2067d1a2008-11-13 22:59:24 +000091 {
92 $retval = array();
danmontgomeryfc756452011-08-21 15:31:22 -040093 while ($field = mysqli_fetch_object($this->result_id))
Barry Mienydd671972010-10-04 16:33:58 +020094 {
Phil Sturgeon659baa92011-10-27 13:24:53 +010095 preg_match('/([a-zA-Z]+)(\(\d+\))?/', $field->Type, $matches);
danmontgomeryfc756452011-08-21 15:31:22 -040096
Andrey Andreev1ff49e02012-01-27 11:30:41 +020097 $F = new stdClass();
98 $F->name = $field->Field;
99 $F->type = ( ! empty($matches[1])) ? $matches[1] : NULL;
100 $F->default = $field->Default;
101 $F->max_length = ( ! empty($matches[2])) ? preg_replace('/[^\d]/', '', $matches[2]) : NULL;
102 $F->primary_key = (int) ($field->Key === 'PRI');
Barry Mienydd671972010-10-04 16:33:58 +0200103
Derek Allard2067d1a2008-11-13 22:59:24 +0000104 $retval[] = $F;
105 }
Barry Mienydd671972010-10-04 16:33:58 +0200106
Derek Allard2067d1a2008-11-13 22:59:24 +0000107 return $retval;
108 }
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200109
Derek Allard2067d1a2008-11-13 22:59:24 +0000110 // --------------------------------------------------------------------
111
112 /**
113 * Free the result
114 *
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200115 * @return void
Barry Mienydd671972010-10-04 16:33:58 +0200116 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200117 public function free_result()
Derek Allard2067d1a2008-11-13 22:59:24 +0000118 {
119 if (is_object($this->result_id))
120 {
121 mysqli_free_result($this->result_id);
122 $this->result_id = FALSE;
123 }
124 }
125
126 // --------------------------------------------------------------------
127
128 /**
129 * Data Seek
130 *
Derek Jones4b9c6292011-07-01 17:40:48 -0500131 * Moves the internal pointer to the desired offset. We call
Derek Allard2067d1a2008-11-13 22:59:24 +0000132 * this internally before fetching results to make sure the
133 * result set starts at zero
134 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000135 * @return array
136 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200137 protected function _data_seek($n = 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000138 {
139 return mysqli_data_seek($this->result_id, $n);
140 }
141
142 // --------------------------------------------------------------------
143
144 /**
145 * Result - associative array
146 *
147 * Returns the result set as an array
148 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000149 * @return array
150 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200151 protected function _fetch_assoc()
Derek Allard2067d1a2008-11-13 22:59:24 +0000152 {
153 return mysqli_fetch_assoc($this->result_id);
154 }
Barry Mienydd671972010-10-04 16:33:58 +0200155
Derek Allard2067d1a2008-11-13 22:59:24 +0000156 // --------------------------------------------------------------------
157
158 /**
159 * Result - object
160 *
161 * Returns the result set as an object
162 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000163 * @return object
164 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200165 protected function _fetch_object()
Derek Allard2067d1a2008-11-13 22:59:24 +0000166 {
167 return mysqli_fetch_object($this->result_id);
168 }
Barry Mienydd671972010-10-04 16:33:58 +0200169
Derek Allard2067d1a2008-11-13 22:59:24 +0000170}
171
Derek Allard2067d1a2008-11-13 22:59:24 +0000172/* End of file mysqli_result.php */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200173/* Location: ./system/database/drivers/mysqli/mysqli_result.php */