blob: a71b1a20f5477ca95548271bc70e70a41dc67bff [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Esen Sagynov2e087942011-08-09 23:35:01 -07002/**
3 * CodeIgniter
4 *
Andrey Andreevfe9309d2015-01-09 17:48:58 +02005 * An open source application development framework for PHP
Esen Sagynov2e087942011-08-09 23:35:01 -07006 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +02007 * This content is released under the MIT License (MIT)
Andrey Andreev32ed1cc2012-03-20 15:11:50 +02008 *
Andrey Andreevcce6bd12018-01-09 11:32:02 +02009 * Copyright (c) 2014 - 2018, British Columbia Institute of Technology
Andrey Andreev32ed1cc2012-03-20 15:11:50 +020010 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020011 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
Derek Jonesf4a4bd82011-10-20 12:18:42 -050017 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020018 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 * THE SOFTWARE.
28 *
29 * @package CodeIgniter
30 * @author EllisLab Dev Team
Andrey Andreev1924e872016-01-11 12:55:34 +020031 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
Andrey Andreevcce6bd12018-01-09 11:32:02 +020032 * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020033 * @license http://opensource.org/licenses/MIT MIT License
Andrey Andreevbd202c92016-01-11 12:50:18 +020034 * @link https://codeigniter.com
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020035 * @since Version 2.1.0
Esen Sagynov2e087942011-08-09 23:35:01 -070036 * @filesource
37 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020038defined('BASEPATH') OR exit('No direct script access allowed');
Esen Sagynov2e087942011-08-09 23:35:01 -070039
Esen Sagynov2e087942011-08-09 23:35:01 -070040/**
41 * CUBRID Result Class
42 *
43 * This class extends the parent result class: CI_DB_result
44 *
45 * @category Database
Esen Sagynov2ab2b1e2011-08-11 00:41:16 -070046 * @author Esen Sagynov
Andrey Andreevbd202c92016-01-11 12:50:18 +020047 * @link https://codeigniter.com/user_guide/database/
Esen Sagynov2e087942011-08-09 23:35:01 -070048 */
49class CI_DB_cubrid_result extends CI_DB_result {
50
51 /**
52 * Number of rows in the result set
53 *
Andrey Andreev32ed1cc2012-03-20 15:11:50 +020054 * @return int
Esen Sagynov2e087942011-08-09 23:35:01 -070055 */
Andrey Andreev32ed1cc2012-03-20 15:11:50 +020056 public function num_rows()
Esen Sagynov2e087942011-08-09 23:35:01 -070057 {
Andrey Andreevc7db6bb2012-07-05 15:11:20 +030058 return is_int($this->num_rows)
59 ? $this->num_rows
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +030060 : $this->num_rows = cubrid_num_rows($this->result_id);
Esen Sagynov2e087942011-08-09 23:35:01 -070061 }
62
63 // --------------------------------------------------------------------
64
65 /**
66 * Number of fields in the result set
67 *
Andrey Andreev32ed1cc2012-03-20 15:11:50 +020068 * @return int
Esen Sagynov2e087942011-08-09 23:35:01 -070069 */
Andrey Andreev32ed1cc2012-03-20 15:11:50 +020070 public function num_fields()
Esen Sagynov2e087942011-08-09 23:35:01 -070071 {
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +030072 return cubrid_num_fields($this->result_id);
Esen Sagynov2e087942011-08-09 23:35:01 -070073 }
74
75 // --------------------------------------------------------------------
76
77 /**
78 * Fetch Field Names
79 *
80 * Generates an array of column names
81 *
Esen Sagynov2e087942011-08-09 23:35:01 -070082 * @return array
83 */
Andrey Andreev32ed1cc2012-03-20 15:11:50 +020084 public function list_fields()
Esen Sagynov2e087942011-08-09 23:35:01 -070085 {
86 return cubrid_column_names($this->result_id);
87 }
88
89 // --------------------------------------------------------------------
90
91 /**
92 * Field data
93 *
94 * Generates an array of objects containing field meta-data
95 *
Esen Sagynov2e087942011-08-09 23:35:01 -070096 * @return array
97 */
Andrey Andreev32ed1cc2012-03-20 15:11:50 +020098 public function field_data()
Esen Sagynov2e087942011-08-09 23:35:01 -070099 {
100 $retval = array();
Esen Sagynov2e087942011-08-09 23:35:01 -0700101
Andrey Andreev10ecc842012-11-16 01:06:20 +0200102 for ($i = 0, $c = $this->num_fields(); $i < $c; $i++)
Esen Sagynov2e087942011-08-09 23:35:01 -0700103 {
Andrey Andreev394a3f12012-02-15 14:35:11 +0200104 $retval[$i] = new stdClass();
Andrey Andreev10ecc842012-11-16 01:06:20 +0200105 $retval[$i]->name = cubrid_field_name($this->result_id, $i);
106 $retval[$i]->type = cubrid_field_type($this->result_id, $i);
Andrey Andreev394a3f12012-02-15 14:35:11 +0200107 $retval[$i]->max_length = cubrid_field_len($this->result_id, $i);
Andrey Andreev10ecc842012-11-16 01:06:20 +0200108 $retval[$i]->primary_key = (int) (strpos(cubrid_field_flags($this->result_id, $i), 'primary_key') !== FALSE);
Esen Sagynov2e087942011-08-09 23:35:01 -0700109 }
110
111 return $retval;
112 }
113
114 // --------------------------------------------------------------------
115
116 /**
117 * Free the result
118 *
Andrey Andreev32ed1cc2012-03-20 15:11:50 +0200119 * @return void
Esen Sagynov2e087942011-08-09 23:35:01 -0700120 */
Andrey Andreev32ed1cc2012-03-20 15:11:50 +0200121 public function free_result()
Esen Sagynov2e087942011-08-09 23:35:01 -0700122 {
Andrey Andreev7f55d612012-01-26 13:44:28 +0200123 if (is_resource($this->result_id) OR
124 (get_resource_type($this->result_id) === 'Unknown' && preg_match('/Resource id #/', strval($this->result_id))))
Esen Sagynov2e087942011-08-09 23:35:01 -0700125 {
126 cubrid_close_request($this->result_id);
127 $this->result_id = FALSE;
128 }
129 }
130
131 // --------------------------------------------------------------------
132
133 /**
134 * Data Seek
135 *
Esen Sagynov2ab2b1e2011-08-11 00:41:16 -0700136 * Moves the internal pointer to the desired offset. We call
Esen Sagynov2e087942011-08-09 23:35:01 -0700137 * this internally before fetching results to make sure the
Andrey Andreev8463b912012-11-02 02:16:28 +0200138 * result set starts at zero.
Esen Sagynov2e087942011-08-09 23:35:01 -0700139 *
Andrey Andreev8463b912012-11-02 02:16:28 +0200140 * @param int $n
Andrey Andreev8f3566f2012-04-12 14:30:05 +0300141 * @return bool
Esen Sagynov2e087942011-08-09 23:35:01 -0700142 */
Andrey Andreev69edc432012-12-04 13:32:16 +0200143 public function data_seek($n = 0)
Esen Sagynov2e087942011-08-09 23:35:01 -0700144 {
145 return cubrid_data_seek($this->result_id, $n);
146 }
147
148 // --------------------------------------------------------------------
149
150 /**
151 * Result - associative array
152 *
153 * Returns the result set as an array
154 *
Esen Sagynov2e087942011-08-09 23:35:01 -0700155 * @return array
156 */
Andrey Andreev32ed1cc2012-03-20 15:11:50 +0200157 protected function _fetch_assoc()
Esen Sagynov2e087942011-08-09 23:35:01 -0700158 {
159 return cubrid_fetch_assoc($this->result_id);
160 }
161
162 // --------------------------------------------------------------------
163
164 /**
165 * Result - object
166 *
167 * Returns the result set as an object
168 *
Andrey Andreev8463b912012-11-02 02:16:28 +0200169 * @param string $class_name
Esen Sagynov2e087942011-08-09 23:35:01 -0700170 * @return object
171 */
Andrey Andreev9a4f3562012-07-06 11:57:37 +0300172 protected function _fetch_object($class_name = 'stdClass')
Esen Sagynov2e087942011-08-09 23:35:01 -0700173 {
Andrey Andreev9a4f3562012-07-06 11:57:37 +0300174 return cubrid_fetch_object($this->result_id, $class_name);
Esen Sagynov2e087942011-08-09 23:35:01 -0700175 }
176
177}