blob: f3ee987ed063591385e9d588d8d94d86ad62168c [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
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 Andreev4da24f82012-01-25 21:54:23 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreev4da24f82012-01-25 21:54:23 +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
darwinel871754a2014-02-11 17:34:57 +010021 * @copyright Copyright (c) 2008 - 2014, 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 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020027defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000028
Derek Allard2067d1a2008-11-13 22:59:24 +000029/**
Andrey Andreev9a4f3562012-07-06 11:57:37 +030030 * MSSQL Result Class
Derek Allard2067d1a2008-11-13 22:59:24 +000031 *
32 * This class extends the parent result class: CI_DB_result
33 *
34 * @category Database
Derek Jonesf4a4bd82011-10-20 12:18:42 -050035 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000036 * @link http://codeigniter.com/user_guide/database/
Andrey Andreevc7db6bb2012-07-05 15:11:20 +030037 * @since 1.3
Derek Allard2067d1a2008-11-13 22:59:24 +000038 */
39class CI_DB_mssql_result extends CI_DB_result {
Barry Mienydd671972010-10-04 16:33:58 +020040
Derek Allard2067d1a2008-11-13 22:59:24 +000041 /**
42 * Number of rows in the result set
43 *
Andrey Andreev4da24f82012-01-25 21:54:23 +020044 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +000045 */
Andrey Andreev4da24f82012-01-25 21:54:23 +020046 public function num_rows()
Derek Allard2067d1a2008-11-13 22:59:24 +000047 {
Andrey Andreevc7db6bb2012-07-05 15:11:20 +030048 return is_int($this->num_rows)
49 ? $this->num_rows
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +030050 : $this->num_rows = mssql_num_rows($this->result_id);
Derek Allard2067d1a2008-11-13 22:59:24 +000051 }
Barry Mienydd671972010-10-04 16:33:58 +020052
Derek Allard2067d1a2008-11-13 22:59:24 +000053 // --------------------------------------------------------------------
54
55 /**
56 * Number of fields in the result set
57 *
Andrey Andreev4da24f82012-01-25 21:54:23 +020058 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +000059 */
Andrey Andreev4da24f82012-01-25 21:54:23 +020060 public function num_fields()
Derek Allard2067d1a2008-11-13 22:59:24 +000061 {
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +030062 return mssql_num_fields($this->result_id);
Derek Allard2067d1a2008-11-13 22:59:24 +000063 }
64
65 // --------------------------------------------------------------------
66
67 /**
68 * Fetch Field Names
69 *
70 * Generates an array of column names
71 *
Derek Allard2067d1a2008-11-13 22:59:24 +000072 * @return array
73 */
Andrey Andreev4da24f82012-01-25 21:54:23 +020074 public function list_fields()
Derek Allard2067d1a2008-11-13 22:59:24 +000075 {
76 $field_names = array();
Chris Buckleyb835a4f2013-01-28 23:35:13 +000077 mssql_field_seek($this->result_id, 0);
Derek Allard2067d1a2008-11-13 22:59:24 +000078 while ($field = mssql_fetch_field($this->result_id))
79 {
80 $field_names[] = $field->name;
81 }
Barry Mienydd671972010-10-04 16:33:58 +020082
Derek Allard2067d1a2008-11-13 22:59:24 +000083 return $field_names;
84 }
85
86 // --------------------------------------------------------------------
87
88 /**
89 * Field data
90 *
91 * Generates an array of objects containing field meta-data
92 *
Derek Allard2067d1a2008-11-13 22:59:24 +000093 * @return array
94 */
Andrey Andreev4da24f82012-01-25 21:54:23 +020095 public function field_data()
Derek Allard2067d1a2008-11-13 22:59:24 +000096 {
97 $retval = array();
Andrey Andreevf1e1b772012-11-16 01:27:00 +020098 for ($i = 0, $c = $this->num_field(); $i < $c; $i++)
Barry Mienydd671972010-10-04 16:33:58 +020099 {
Andrey Andreevf1e1b772012-11-16 01:27:00 +0200100 $field = mssql_fetch_field($this->result_id, $i);
Barry Mienydd671972010-10-04 16:33:58 +0200101
Andrey Andreevf1e1b772012-11-16 01:27:00 +0200102 $retval[$i] = new stdClass();
103 $retval[$i]->name = $field->name;
104 $retval[$i]->type = $field->type;
105 $retval[$i]->max_length = $field->max_length;
Derek Allard2067d1a2008-11-13 22:59:24 +0000106 }
Barry Mienydd671972010-10-04 16:33:58 +0200107
Derek Allard2067d1a2008-11-13 22:59:24 +0000108 return $retval;
109 }
110
111 // --------------------------------------------------------------------
112
113 /**
114 * Free the result
115 *
Andrey Andreev4da24f82012-01-25 21:54:23 +0200116 * @return void
Barry Mienydd671972010-10-04 16:33:58 +0200117 */
Andrey Andreev4da24f82012-01-25 21:54:23 +0200118 public function free_result()
Derek Allard2067d1a2008-11-13 22:59:24 +0000119 {
120 if (is_resource($this->result_id))
121 {
122 mssql_free_result($this->result_id);
123 $this->result_id = FALSE;
124 }
125 }
126
127 // --------------------------------------------------------------------
128
129 /**
130 * Data Seek
131 *
Andrey Andreev4da24f82012-01-25 21:54:23 +0200132 * Moves the internal pointer to the desired offset. We call
Derek Allard2067d1a2008-11-13 22:59:24 +0000133 * this internally before fetching results to make sure the
Andrey Andreev8463b912012-11-02 02:16:28 +0200134 * result set starts at zero.
Derek Allard2067d1a2008-11-13 22:59:24 +0000135 *
Andrey Andreev8463b912012-11-02 02:16:28 +0200136 * @param int $n
Andrey Andreev8f3566f2012-04-12 14:30:05 +0300137 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +0000138 */
Andrey Andreev69edc432012-12-04 13:32:16 +0200139 public function data_seek($n = 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000140 {
141 return mssql_data_seek($this->result_id, $n);
142 }
Barry Mienydd671972010-10-04 16:33:58 +0200143
Derek Allard2067d1a2008-11-13 22:59:24 +0000144 // --------------------------------------------------------------------
145
146 /**
147 * Result - associative array
148 *
149 * Returns the result set as an array
150 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000151 * @return array
152 */
Andrey Andreev4da24f82012-01-25 21:54:23 +0200153 protected function _fetch_assoc()
Derek Allard2067d1a2008-11-13 22:59:24 +0000154 {
155 return mssql_fetch_assoc($this->result_id);
156 }
Barry Mienydd671972010-10-04 16:33:58 +0200157
Derek Allard2067d1a2008-11-13 22:59:24 +0000158 // --------------------------------------------------------------------
159
160 /**
161 * Result - object
162 *
163 * Returns the result set as an object
164 *
Andrey Andreev8463b912012-11-02 02:16:28 +0200165 * @param string $class_name
Derek Allard2067d1a2008-11-13 22:59:24 +0000166 * @return object
167 */
Andrey Andreev9a4f3562012-07-06 11:57:37 +0300168 protected function _fetch_object($class_name = 'stdClass')
Derek Allard2067d1a2008-11-13 22:59:24 +0000169 {
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300170 $row = mssql_fetch_object($this->result_id);
Andrey Andreev9a4f3562012-07-06 11:57:37 +0300171
172 if ($class_name === 'stdClass' OR ! $row)
173 {
174 return $row;
175 }
176
177 $class_name = new $class_name();
178 foreach ($row as $key => $value)
179 {
180 $class_name->$key = $value;
181 }
182
183 return $class_name;
Derek Allard2067d1a2008-11-13 22:59:24 +0000184 }
185
186}
187
Derek Allard2067d1a2008-11-13 22:59:24 +0000188/* End of file mssql_result.php */
Derek Jonesa3ffbbb2008-05-11 18:18:29 +0000189/* Location: ./system/database/drivers/mssql/mssql_result.php */