blob: af532110a32d887f0ad1348b7957907882009a5d [file] [log] [blame]
Andrey Andreevb76029d2012-01-26 15:13:19 +02001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05007 * NOTICE OF LICENSE
Andrey Andreevb76029d2012-01-26 15:13:19 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreevb76029d2012-01-26 15:13:19 +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 * ODBC 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_odbc_result extends CI_DB_result {
Barry Mienydd671972010-10-04 16:33:58 +020038
Andrey Andreevef795ac2012-03-01 15:15:31 +020039 public $num_rows;
40
Derek Allard2067d1a2008-11-13 22:59:24 +000041 /**
42 * Number of rows in the result set
43 *
Andrey Andreevb76029d2012-01-26 15:13:19 +020044 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +000045 */
Andrey Andreevb76029d2012-01-26 15:13:19 +020046 public function num_rows()
Derek Allard2067d1a2008-11-13 22:59:24 +000047 {
Andrey Andreevef795ac2012-03-01 15:15:31 +020048 if (is_int($this->num_rows))
Andrey Andreev78b24bf2012-02-29 16:43:57 +020049 {
50 return $this->num_rows;
51 }
52
53 // Work-around for ODBC subdrivers that don't support num_rows()
54 if (($this->num_rows = @odbc_num_rows($this->result_id)) === -1)
55 {
Andrey Andreevef795ac2012-03-01 15:15:31 +020056 $this->num_rows = count($this->result_array());
Andrey Andreev78b24bf2012-02-29 16:43:57 +020057 }
58
59 return $this->num_rows;
Derek Allard2067d1a2008-11-13 22:59:24 +000060 }
Barry Mienydd671972010-10-04 16:33:58 +020061
Derek Allard2067d1a2008-11-13 22:59:24 +000062 /**
63 * Number of fields in the result set
64 *
Andrey Andreevb76029d2012-01-26 15:13:19 +020065 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +000066 */
Andrey Andreevb76029d2012-01-26 15:13:19 +020067 public function num_fields()
Derek Allard2067d1a2008-11-13 22:59:24 +000068 {
69 return @odbc_num_fields($this->result_id);
70 }
71
72 // --------------------------------------------------------------------
73
74 /**
75 * Fetch Field Names
76 *
77 * Generates an array of column names
78 *
Derek Allard2067d1a2008-11-13 22:59:24 +000079 * @return array
80 */
Andrey Andreevb76029d2012-01-26 15:13:19 +020081 public function list_fields()
Derek Allard2067d1a2008-11-13 22:59:24 +000082 {
83 $field_names = array();
Andrey Andreevbb8a6832012-02-14 12:17:13 +020084 $num_fields = $this->num_fields();
Andrey Andreev41e46a92012-03-01 14:58:17 +020085
Andrey Andreevbb8a6832012-02-14 12:17:13 +020086 if ($num_fields > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +000087 {
Andrey Andreevbb8a6832012-02-14 12:17:13 +020088 for ($i = 1; $i <= $num_fields; $i++)
89 {
Andrey Andreev41e46a92012-03-01 14:58:17 +020090 $field_names[] = odbc_field_name($this->result_id, $i);
Andrey Andreevbb8a6832012-02-14 12:17:13 +020091 }
Derek Allard2067d1a2008-11-13 22:59:24 +000092 }
Barry Mienydd671972010-10-04 16:33:58 +020093
Derek Allard2067d1a2008-11-13 22:59:24 +000094 return $field_names;
95 }
96
97 // --------------------------------------------------------------------
98
99 /**
100 * Field data
101 *
102 * Generates an array of objects containing field meta-data
103 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000104 * @return array
105 */
Andrey Andreevb76029d2012-01-26 15:13:19 +0200106 public function field_data()
Derek Allard2067d1a2008-11-13 22:59:24 +0000107 {
108 $retval = array();
Andrey Andreevbb8a6832012-02-14 12:17:13 +0200109 for ($i = 0, $odbc_index = 1, $c = $this->num_fields(); $i < $c; $i++, $odbc_index++)
Derek Allard2067d1a2008-11-13 22:59:24 +0000110 {
Andrey Andreevb76029d2012-01-26 15:13:19 +0200111 $retval[$i] = new stdClass();
Andrey Andreevbb8a6832012-02-14 12:17:13 +0200112 $retval[$i]->name = odbc_field_name($this->result_id, $odbc_index);
113 $retval[$i]->type = odbc_field_type($this->result_id, $odbc_index);
114 $retval[$i]->max_length = odbc_field_len($this->result_id, $odbc_index);
Andrey Andreevb76029d2012-01-26 15:13:19 +0200115 $retval[$i]->primary_key = 0;
116 $retval[$i]->default = '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000117 }
Barry Mienydd671972010-10-04 16:33:58 +0200118
Derek Allard2067d1a2008-11-13 22:59:24 +0000119 return $retval;
120 }
121
122 // --------------------------------------------------------------------
123
124 /**
125 * Free the result
126 *
Andrey Andreevb76029d2012-01-26 15:13:19 +0200127 * @return void
Barry Mienydd671972010-10-04 16:33:58 +0200128 */
Andrey Andreevb76029d2012-01-26 15:13:19 +0200129 public function free_result()
Derek Allard2067d1a2008-11-13 22:59:24 +0000130 {
131 if (is_resource($this->result_id))
132 {
133 odbc_free_result($this->result_id);
134 $this->result_id = FALSE;
135 }
136 }
137
138 // --------------------------------------------------------------------
139
140 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000141 * Result - associative array
142 *
143 * Returns the result set as an array
144 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000145 * @return array
146 */
Andrey Andreevb76029d2012-01-26 15:13:19 +0200147 protected function _fetch_assoc()
Derek Allard2067d1a2008-11-13 22:59:24 +0000148 {
Andrey Andreev08364ea2012-07-04 23:10:46 +0300149 return odbc_fetch_array($this->result_id);
Derek Allard2067d1a2008-11-13 22:59:24 +0000150 }
151
152 // --------------------------------------------------------------------
153
154 /**
155 * Result - object
156 *
157 * Returns the result set as an object
158 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000159 * @return object
160 */
Andrey Andreevb76029d2012-01-26 15:13:19 +0200161 protected function _fetch_object()
Derek Allard2067d1a2008-11-13 22:59:24 +0000162 {
Andrey Andreev08364ea2012-07-04 23:10:46 +0300163 return odbc_fetch_object($this->result_id);
Derek Allard2067d1a2008-11-13 22:59:24 +0000164 }
165
Andrey Andreevcc5af532012-03-05 14:02:15 +0200166 // --------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +0000167
Andrey Andreevcc5af532012-03-05 14:02:15 +0200168 /**
169 * Query result. Array version.
170 *
171 * @return array
172 */
173 public function result_array()
174 {
175 if (count($this->result_array) > 0)
176 {
177 return $this->result_array;
178 }
179 elseif (($c = count($this->result_object)) > 0)
180 {
181 for ($i = 0; $i < $c; $i++)
182 {
183 $this->result_array[$i] = (array) $this->result_object[$i];
184 }
185 }
186 elseif ($this->result_id === FALSE)
187 {
188 return array();
189 }
190 else
191 {
192 while ($row = $this->_fetch_assoc())
193 {
194 $this->result_array[] = $row;
195 }
196 }
197
198 return $this->result_array;
199 }
200
Andrey Andreev9c68c312012-03-06 10:34:58 +0200201 // --------------------------------------------------------------------
202
203 /**
204 * Query result. Object version.
205 *
206 * @return array
207 */
208 public function result_object()
209 {
210 if (count($this->result_object) > 0)
211 {
212 return $this->result_object;
213 }
214 elseif (($c = count($this->result_array)) > 0)
215 {
216 for ($i = 0; $i < $c; $i++)
217 {
218 $this->result_object[$i] = (object) $this->result_array[$i];
219 }
220 }
221 elseif ($this->result_id === FALSE)
222 {
223 return array();
224 }
225 else
226 {
227 while ($row = $this->_fetch_object())
228 {
229 $this->result_object[] = $row;
230 }
231 }
232
233 return $this->result_object;
234 }
235
Derek Allard2067d1a2008-11-13 22:59:24 +0000236}
237
Andrey Andreev08364ea2012-07-04 23:10:46 +0300238// --------------------------------------------------------------------
239
240if ( ! function_exists('odbc_fetch_array'))
241{
242 /**
243 * ODBC Fetch array
244 *
245 * Emulates the native odbc_fetch_array() function when
246 * it is not available (odbc_fetch_array() requires unixODBC)
247 *
248 * @param resource
249 * @param int
250 * @return array
251 */
252 function odbc_fetch_array(& $result, $rownumber = 1)
253 {
254 $rs = array();
255 if ( ! odbc_fetch_into($result, $rs, $rownumber))
256 {
257 return FALSE;
258 }
259
260 $rs_assoc = array();
261 foreach ($rs as $k => $v)
262 {
263 $field_name = odbc_field_name($result, $k+1);
264 $rs_assoc[$field_name] = $v;
265 }
266
267 return $rs_assoc;
268 }
269}
270
271// --------------------------------------------------------------------
272
273if ( ! function_exists('odbc_fetch_object'))
274{
275 /**
276 * ODBC Fetch object
277 *
278 * Emulates the native odbc_fetch_object() function when
279 * it is not available.
280 *
281 * @param resource
282 * @param int
283 * @return object
284 */
285 function odbc_fetch_object(& $result, $rownumber = 1)
286 {
287 $rs = array();
288 if ( ! odbc_fetch_into($result, $rs, $rownumber))
289 {
290 return FALSE;
291 }
292
293 $rs_object = new stdClass();
294 foreach ($rs as $k => $v)
295 {
296 $field_name = odbc_field_name($result, $k+1);
297 $rs_object->$field_name = $v;
298 }
299
300 return $rs_object;
301 }
302}
303
Derek Allard2067d1a2008-11-13 22:59:24 +0000304/* End of file odbc_result.php */
Andrey Andreev19aee032012-03-20 15:31:42 +0200305/* Location: ./system/database/drivers/odbc/odbc_result.php */