blob: aeede3f4bed6e826f0cf8caae08f6bec0937e134 [file] [log] [blame]
Andrey Andreev4da24f82012-01-25 21:54:23 +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 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
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/**
Andrey Andreev9a4f3562012-07-06 11:57:37 +030029 * MSSQL Result Class
Derek Allard2067d1a2008-11-13 22:59:24 +000030 *
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/
Andrey Andreevc7db6bb2012-07-05 15:11:20 +030036 * @since 1.3
Derek Allard2067d1a2008-11-13 22:59:24 +000037 */
38class CI_DB_mssql_result extends CI_DB_result {
Barry Mienydd671972010-10-04 16:33:58 +020039
Derek Allard2067d1a2008-11-13 22:59:24 +000040 /**
41 * Number of rows in the result set
42 *
Andrey Andreev4da24f82012-01-25 21:54:23 +020043 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +000044 */
Andrey Andreev4da24f82012-01-25 21:54:23 +020045 public function num_rows()
Derek Allard2067d1a2008-11-13 22:59:24 +000046 {
Andrey Andreevc7db6bb2012-07-05 15:11:20 +030047 return is_int($this->num_rows)
48 ? $this->num_rows
49 : $this->num_rows = @mssql_num_rows($this->result_id);
Derek Allard2067d1a2008-11-13 22:59:24 +000050 }
Barry Mienydd671972010-10-04 16:33:58 +020051
Derek Allard2067d1a2008-11-13 22:59:24 +000052 // --------------------------------------------------------------------
53
54 /**
55 * Number of fields in the result set
56 *
Andrey Andreev4da24f82012-01-25 21:54:23 +020057 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +000058 */
Andrey Andreev4da24f82012-01-25 21:54:23 +020059 public function num_fields()
Derek Allard2067d1a2008-11-13 22:59:24 +000060 {
61 return @mssql_num_fields($this->result_id);
62 }
63
64 // --------------------------------------------------------------------
65
66 /**
67 * Fetch Field Names
68 *
69 * Generates an array of column names
70 *
Derek Allard2067d1a2008-11-13 22:59:24 +000071 * @return array
72 */
Andrey Andreev4da24f82012-01-25 21:54:23 +020073 public function list_fields()
Derek Allard2067d1a2008-11-13 22:59:24 +000074 {
75 $field_names = array();
76 while ($field = mssql_fetch_field($this->result_id))
77 {
78 $field_names[] = $field->name;
79 }
Barry Mienydd671972010-10-04 16:33:58 +020080
Derek Allard2067d1a2008-11-13 22:59:24 +000081 return $field_names;
82 }
83
84 // --------------------------------------------------------------------
85
86 /**
87 * Field data
88 *
89 * Generates an array of objects containing field meta-data
90 *
Derek Allard2067d1a2008-11-13 22:59:24 +000091 * @return array
92 */
Andrey Andreev4da24f82012-01-25 21:54:23 +020093 public function field_data()
Derek Allard2067d1a2008-11-13 22:59:24 +000094 {
95 $retval = array();
96 while ($field = mssql_fetch_field($this->result_id))
Barry Mienydd671972010-10-04 16:33:58 +020097 {
Andrey Andreev4da24f82012-01-25 21:54:23 +020098 $F = new stdClass();
99 $F->name = $field->name;
100 $F->type = $field->type;
Derek Allard2067d1a2008-11-13 22:59:24 +0000101 $F->max_length = $field->max_length;
102 $F->primary_key = 0;
Andrey Andreev4da24f82012-01-25 21:54:23 +0200103 $F->default = '';
Barry Mienydd671972010-10-04 16:33:58 +0200104
Derek Allard2067d1a2008-11-13 22:59:24 +0000105 $retval[] = $F;
106 }
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
134 * result set starts at zero
135 *
Andrey Andreev8f3566f2012-04-12 14:30:05 +0300136 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +0000137 */
Andrey Andreev11559022012-03-20 16:04:48 +0200138 protected function _data_seek($n = 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000139 {
140 return mssql_data_seek($this->result_id, $n);
141 }
Barry Mienydd671972010-10-04 16:33:58 +0200142
Derek Allard2067d1a2008-11-13 22:59:24 +0000143 // --------------------------------------------------------------------
144
145 /**
146 * Result - associative array
147 *
148 * Returns the result set as an array
149 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000150 * @return array
151 */
Andrey Andreev4da24f82012-01-25 21:54:23 +0200152 protected function _fetch_assoc()
Derek Allard2067d1a2008-11-13 22:59:24 +0000153 {
154 return mssql_fetch_assoc($this->result_id);
155 }
Barry Mienydd671972010-10-04 16:33:58 +0200156
Derek Allard2067d1a2008-11-13 22:59:24 +0000157 // --------------------------------------------------------------------
158
159 /**
160 * Result - object
161 *
162 * Returns the result set as an object
163 *
Andrey Andreev9a4f3562012-07-06 11:57:37 +0300164 * @param string
Derek Allard2067d1a2008-11-13 22:59:24 +0000165 * @return object
166 */
Andrey Andreev9a4f3562012-07-06 11:57:37 +0300167 protected function _fetch_object($class_name = 'stdClass')
Derek Allard2067d1a2008-11-13 22:59:24 +0000168 {
Andrey Andreev9a4f3562012-07-06 11:57:37 +0300169 $row = @mssql_fetch_object($this->result_id);
170
171 if ($class_name === 'stdClass' OR ! $row)
172 {
173 return $row;
174 }
175
176 $class_name = new $class_name();
177 foreach ($row as $key => $value)
178 {
179 $class_name->$key = $value;
180 }
181
182 return $class_name;
Derek Allard2067d1a2008-11-13 22:59:24 +0000183 }
184
185}
186
Derek Allard2067d1a2008-11-13 22:59:24 +0000187/* End of file mssql_result.php */
Derek Jonesa3ffbbb2008-05-11 18:18:29 +0000188/* Location: ./system/database/drivers/mssql/mssql_result.php */