blob: 7245f7745cb9327f4d06706ab923b29f2ad0a573 [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 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +02007 * This content is released under the MIT License (MIT)
Andrey Andreev2caf2892012-01-27 00:12:03 +02008 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +02009 * Copyright (c) 2014, British Columbia Institute of Technology
Andrey Andreev2caf2892012-01-27 00:12:03 +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
darwinel871754a2014-02-11 17:34:57 +010031 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020032 * @copyright Copyright (c) 2014, British Columbia Institute of Technology (http://bcit.ca/)
33 * @license http://opensource.org/licenses/MIT MIT License
34 * @link http://codeigniter.com
35 * @since Version 1.0.0
Derek Allard2067d1a2008-11-13 22:59:24 +000036 * @filesource
37 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020038defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000039
Derek Allard2067d1a2008-11-13 22:59:24 +000040/**
41 * MySQL Database Adapter Class
42 *
43 * Note: _DB is an extender class that the app controller
Jamie Rumbelow7efad202012-02-19 12:37:00 +000044 * creates dynamically based on whether the query builder
Derek Allard2067d1a2008-11-13 22:59:24 +000045 * class is being used or not.
46 *
47 * @package CodeIgniter
48 * @subpackage Drivers
49 * @category Database
Derek Jonesf4a4bd82011-10-20 12:18:42 -050050 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000051 * @link http://codeigniter.com/user_guide/database/
52 */
53class CI_DB_mysql_driver extends CI_DB {
54
Andrey Andreeva24e52e2012-11-02 03:54:12 +020055 /**
56 * Database driver
57 *
58 * @var string
59 */
Andrey Andreev2caf2892012-01-27 00:12:03 +020060 public $dbdriver = 'mysql';
RH Beckercfdb2322011-10-03 17:28:32 -070061
Derek Allard2067d1a2008-11-13 22:59:24 +000062 /**
Andrey Andreeva24e52e2012-11-02 03:54:12 +020063 * Compression flag
64 *
65 * @var bool
66 */
67 public $compress = FALSE;
68
69 /**
70 * DELETE hack flag
71 *
Andrey Andreev2caf2892012-01-27 00:12:03 +020072 * Whether to use the MySQL "delete hack" which allows the number
73 * of affected rows to be shown. Uses a preg_replace when enabled,
74 * adding a bit more processing to all queries.
Andrey Andreeva24e52e2012-11-02 03:54:12 +020075 *
76 * @var bool
Barry Mienydd671972010-10-04 16:33:58 +020077 */
Andrey Andreev2caf2892012-01-27 00:12:03 +020078 public $delete_hack = TRUE;
79
Andrey Andreevf8f14f32013-12-10 11:32:32 +020080 /**
81 * Strict ON flag
82 *
83 * Whether we're running in strict SQL mode.
84 *
85 * @var bool
86 */
87 public $stricton = FALSE;
88
Andrey Andreeva24e52e2012-11-02 03:54:12 +020089 // --------------------------------------------------------------------
90
Andrey Andreev473130a2012-06-24 02:51:18 +030091 /**
Andrey Andreeva24e52e2012-11-02 03:54:12 +020092 * Identifier escape character
Andrey Andreev473130a2012-06-24 02:51:18 +030093 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +020094 * @var string
95 */
96 protected $_escape_char = '`';
97
98 // --------------------------------------------------------------------
99
100 /**
101 * Class constructor
102 *
103 * @param array $params
Andrey Andreev473130a2012-06-24 02:51:18 +0300104 * @return void
105 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200106 public function __construct($params)
Derek Allard2067d1a2008-11-13 22:59:24 +0000107 {
Andrey Andreev2caf2892012-01-27 00:12:03 +0200108 parent::__construct($params);
109
Andrey Andreeve4c30192012-06-04 15:08:24 +0300110 if ( ! empty($this->port))
Derek Allard2067d1a2008-11-13 22:59:24 +0000111 {
112 $this->hostname .= ':'.$this->port;
113 }
Andrey Andreev2caf2892012-01-27 00:12:03 +0200114 }
Barry Mienydd671972010-10-04 16:33:58 +0200115
Andrey Andreev473130a2012-06-24 02:51:18 +0300116 // --------------------------------------------------------------------
117
Andrey Andreev2caf2892012-01-27 00:12:03 +0200118 /**
119 * Non-persistent database connection
120 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200121 * @param bool $persistent
Andrey Andreev2caf2892012-01-27 00:12:03 +0200122 * @return resource
123 */
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300124 public function db_connect($persistent = FALSE)
Andrey Andreev2caf2892012-01-27 00:12:03 +0200125 {
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300126 $client_flags = ($this->compress === FALSE) ? 0 : MYSQL_CLIENT_COMPRESS;
127
128 if ($this->encrypt === TRUE)
Michiel Vugteveen49f7b722012-08-20 18:52:21 +0200129 {
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300130 $client_flags = $client_flags | MYSQL_CLIENT_SSL;
Michiel Vugteveen49f7b722012-08-20 18:52:21 +0200131 }
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300132
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300133 // Error suppression is necessary mostly due to PHP 5.5+ issuing E_DEPRECATED messages
Andrey Andreev1a001492013-01-24 11:32:29 +0200134 $this->conn_id = ($persistent === TRUE)
Andrey Andreev4247ed12014-02-25 16:03:16 +0200135 ? @mysql_pconnect($this->hostname, $this->username, $this->password, $client_flags)
136 : @mysql_connect($this->hostname, $this->username, $this->password, TRUE, $client_flags);
Andrey Andreev1a001492013-01-24 11:32:29 +0200137
138 // ----------------------------------------------------------------
139
140 // Select the DB... assuming a database name is specified in the config file
141 if ($this->database !== '' && ! $this->db_select())
142 {
143 log_message('error', 'Unable to select database: '.$this->database);
144
145 return ($this->db_debug === TRUE)
146 ? $this->display_error('db_unable_to_select', $this->database)
147 : FALSE;
148 }
149
Andrey Andreevf8f14f32013-12-10 11:32:32 +0200150 if ($this->stricton && is_resource($this->conn_id))
151 {
152 $this->simple_query('SET SESSION sql_mode="STRICT_ALL_TABLES"');
153 }
154
Andrey Andreev1a001492013-01-24 11:32:29 +0200155 return $this->conn_id;
Derek Allard2067d1a2008-11-13 22:59:24 +0000156 }
Barry Mienydd671972010-10-04 16:33:58 +0200157
Derek Allard2067d1a2008-11-13 22:59:24 +0000158 // --------------------------------------------------------------------
159
160 /**
Derek Jones87cbafc2009-02-27 16:29:59 +0000161 * Reconnect
162 *
163 * Keep / reestablish the db connection if no queries have been
164 * sent for a length of time exceeding the server's idle timeout
165 *
Derek Jones87cbafc2009-02-27 16:29:59 +0000166 * @return void
167 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200168 public function reconnect()
Derek Jones87cbafc2009-02-27 16:29:59 +0000169 {
170 if (mysql_ping($this->conn_id) === FALSE)
171 {
172 $this->conn_id = FALSE;
173 }
174 }
175
176 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200177
Derek Jones87cbafc2009-02-27 16:29:59 +0000178 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000179 * Select the database
180 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200181 * @param string $database
Andrey Andreev2caf2892012-01-27 00:12:03 +0200182 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200183 */
Andrey Andreev11454e02012-02-22 16:05:47 +0200184 public function db_select($database = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000185 {
Andrey Andreev024ba2d2012-02-24 11:40:36 +0200186 if ($database === '')
187 {
188 $database = $this->database;
189 }
190
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300191 if (mysql_select_db($database, $this->conn_id))
Andrey Andreev024ba2d2012-02-24 11:40:36 +0200192 {
193 $this->database = $database;
194 return TRUE;
195 }
196
197 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000198 }
199
200 // --------------------------------------------------------------------
201
202 /**
203 * Set client character set
204 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200205 * @param string $charset
Andrey Andreev2caf2892012-01-27 00:12:03 +0200206 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +0000207 */
Andrey Andreev95bd1d12012-03-12 16:22:28 +0200208 protected function _db_set_charset($charset)
Derek Allard2067d1a2008-11-13 22:59:24 +0000209 {
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300210 return mysql_set_charset($charset, $this->conn_id);
Derek Allard2067d1a2008-11-13 22:59:24 +0000211 }
212
213 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200214
Derek Allard2067d1a2008-11-13 22:59:24 +0000215 /**
Andrey Andreev08856b82012-03-03 03:19:28 +0200216 * Database version number
Derek Allard2067d1a2008-11-13 22:59:24 +0000217 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000218 * @return string
219 */
Andrey Andreev08856b82012-03-03 03:19:28 +0200220 public function version()
Derek Allard2067d1a2008-11-13 22:59:24 +0000221 {
Andrey Andreev2b730372012-11-05 17:01:11 +0200222 if (isset($this->data_cache['version']))
223 {
224 return $this->data_cache['version'];
225 }
226 elseif ( ! $this->conn_id)
227 {
228 $this->initialize();
229 }
230
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300231 if ( ! $this->conn_id OR ($version = mysql_get_server_info($this->conn_id)) === FALSE)
Andrey Andreev2b730372012-11-05 17:01:11 +0200232 {
233 return FALSE;
234 }
235
236 return $this->data_cache['version'] = $version;
Derek Allard2067d1a2008-11-13 22:59:24 +0000237 }
238
239 // --------------------------------------------------------------------
240
241 /**
242 * Execute the query
243 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200244 * @param string $sql an SQL query
Andrey Andreev2caf2892012-01-27 00:12:03 +0200245 * @return mixed
Barry Mienydd671972010-10-04 16:33:58 +0200246 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200247 protected function _execute($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000248 {
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300249 return mysql_query($this->_prep_query($sql), $this->conn_id);
Derek Allard2067d1a2008-11-13 22:59:24 +0000250 }
Barry Mienydd671972010-10-04 16:33:58 +0200251
Derek Allard2067d1a2008-11-13 22:59:24 +0000252 // --------------------------------------------------------------------
253
254 /**
255 * Prep the query
256 *
257 * If needed, each database adapter can prep the query string
258 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200259 * @param string $sql an SQL query
Derek Allard2067d1a2008-11-13 22:59:24 +0000260 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200261 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200262 protected function _prep_query($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000263 {
Andrey Andreev2caf2892012-01-27 00:12:03 +0200264 // mysql_affected_rows() returns 0 for "DELETE FROM TABLE" queries. This hack
265 // modifies the query so that it a proper number of affected rows is returned.
266 if ($this->delete_hack === TRUE && preg_match('/^\s*DELETE\s+FROM\s+(\S+)\s*$/i', $sql))
Derek Allard2067d1a2008-11-13 22:59:24 +0000267 {
Andrey Andreevbe999662013-01-10 11:40:09 +0200268 return trim($sql).' WHERE 1=1';
Derek Allard2067d1a2008-11-13 22:59:24 +0000269 }
Barry Mienydd671972010-10-04 16:33:58 +0200270
Derek Allard2067d1a2008-11-13 22:59:24 +0000271 return $sql;
272 }
273
274 // --------------------------------------------------------------------
275
276 /**
277 * Begin Transaction
278 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200279 * @param bool $test_mode
Barry Mienydd671972010-10-04 16:33:58 +0200280 * @return bool
281 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200282 public function trans_begin($test_mode = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000283 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000284 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev2caf2892012-01-27 00:12:03 +0200285 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000286 {
287 return TRUE;
288 }
289
290 // Reset the transaction failure flag.
291 // If the $test_mode flag is set to TRUE transactions will be rolled back
292 // even if the queries produce a successful result.
Andrey Andreev2caf2892012-01-27 00:12:03 +0200293 $this->_trans_failure = ($test_mode === TRUE);
Barry Mienydd671972010-10-04 16:33:58 +0200294
Derek Allard2067d1a2008-11-13 22:59:24 +0000295 $this->simple_query('SET AUTOCOMMIT=0');
296 $this->simple_query('START TRANSACTION'); // can also be BEGIN or BEGIN WORK
297 return TRUE;
298 }
299
300 // --------------------------------------------------------------------
301
302 /**
303 * Commit Transaction
304 *
Barry Mienydd671972010-10-04 16:33:58 +0200305 * @return bool
306 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200307 public function trans_commit()
Derek Allard2067d1a2008-11-13 22:59:24 +0000308 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000309 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev2caf2892012-01-27 00:12:03 +0200310 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000311 {
312 return TRUE;
313 }
314
315 $this->simple_query('COMMIT');
316 $this->simple_query('SET AUTOCOMMIT=1');
317 return TRUE;
318 }
319
320 // --------------------------------------------------------------------
321
322 /**
323 * Rollback Transaction
324 *
Barry Mienydd671972010-10-04 16:33:58 +0200325 * @return bool
326 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200327 public function trans_rollback()
Derek Allard2067d1a2008-11-13 22:59:24 +0000328 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000329 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev2caf2892012-01-27 00:12:03 +0200330 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000331 {
332 return TRUE;
333 }
334
335 $this->simple_query('ROLLBACK');
336 $this->simple_query('SET AUTOCOMMIT=1');
337 return TRUE;
338 }
Barry Mienydd671972010-10-04 16:33:58 +0200339
Derek Allard2067d1a2008-11-13 22:59:24 +0000340 // --------------------------------------------------------------------
341
342 /**
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200343 * Platform-dependant string escape
Derek Allard2067d1a2008-11-13 22:59:24 +0000344 *
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200345 * @param string
Derek Allard2067d1a2008-11-13 22:59:24 +0000346 * @return string
347 */
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200348 protected function _escape_str($str)
Barry Mienydd671972010-10-04 16:33:58 +0200349 {
Andrey Andreev62fad282014-06-19 15:25:40 +0300350 return mysql_real_escape_string($str, $this->conn_id);
Derek Allard2067d1a2008-11-13 22:59:24 +0000351 }
Barry Mienydd671972010-10-04 16:33:58 +0200352
Derek Allard2067d1a2008-11-13 22:59:24 +0000353 // --------------------------------------------------------------------
354
355 /**
356 * Affected Rows
357 *
Andrey Andreev2caf2892012-01-27 00:12:03 +0200358 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000359 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200360 public function affected_rows()
Derek Allard2067d1a2008-11-13 22:59:24 +0000361 {
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300362 return mysql_affected_rows($this->conn_id);
Derek Allard2067d1a2008-11-13 22:59:24 +0000363 }
Barry Mienydd671972010-10-04 16:33:58 +0200364
Derek Allard2067d1a2008-11-13 22:59:24 +0000365 // --------------------------------------------------------------------
366
367 /**
368 * Insert ID
369 *
Andrey Andreev2caf2892012-01-27 00:12:03 +0200370 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000371 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200372 public function insert_id()
Derek Allard2067d1a2008-11-13 22:59:24 +0000373 {
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300374 return mysql_insert_id($this->conn_id);
Derek Allard2067d1a2008-11-13 22:59:24 +0000375 }
376
377 // --------------------------------------------------------------------
378
379 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000380 * List table query
381 *
382 * Generates a platform-specific query string so that the table names can be fetched
383 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200384 * @param bool $prefix_limit
Derek Allard2067d1a2008-11-13 22:59:24 +0000385 * @return string
386 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200387 protected function _list_tables($prefix_limit = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000388 {
Andrey Andreev473130a2012-06-24 02:51:18 +0300389 $sql = 'SHOW TABLES FROM '.$this->escape_identifiers($this->database);
Derek Allard2067d1a2008-11-13 22:59:24 +0000390
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100391 if ($prefix_limit !== FALSE && $this->dbprefix !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000392 {
Andrey Andreev2caf2892012-01-27 00:12:03 +0200393 return $sql." LIKE '".$this->escape_like_str($this->dbprefix)."%'";
Derek Allard2067d1a2008-11-13 22:59:24 +0000394 }
395
396 return $sql;
397 }
Barry Mienydd671972010-10-04 16:33:58 +0200398
Derek Allard2067d1a2008-11-13 22:59:24 +0000399 // --------------------------------------------------------------------
400
401 /**
402 * Show column query
403 *
404 * Generates a platform-specific query string so that the column names can be fetched
405 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200406 * @param string $table
Derek Allard2067d1a2008-11-13 22:59:24 +0000407 * @return string
408 */
Andrey Andreev473130a2012-06-24 02:51:18 +0300409 protected function _list_columns($table = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000410 {
Andrey Andreev2caf2892012-01-27 00:12:03 +0200411 return 'SHOW COLUMNS FROM '.$this->protect_identifiers($table, TRUE, NULL, FALSE);
Derek Allard2067d1a2008-11-13 22:59:24 +0000412 }
413
414 // --------------------------------------------------------------------
415
416 /**
Andrey Andreev3722e502012-03-03 15:04:38 +0200417 * Returns an object with field data
Derek Allard2067d1a2008-11-13 22:59:24 +0000418 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200419 * @param string $table
Andrey Andreev10ecc842012-11-16 01:06:20 +0200420 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000421 */
Andrey Andreev3722e502012-03-03 15:04:38 +0200422 public function field_data($table = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000423 {
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100424 if ($table === '')
Andrey Andreev3722e502012-03-03 15:04:38 +0200425 {
426 return ($this->db_debug) ? $this->display_error('db_field_param_missing') : FALSE;
427 }
428
Andrey Andreev10ecc842012-11-16 01:06:20 +0200429 if (($query = $this->query('SHOW COLUMNS FROM '.$this->protect_identifiers($table, TRUE, NULL, FALSE))) === FALSE)
430 {
431 return FALSE;
432 }
Andrey Andreev3722e502012-03-03 15:04:38 +0200433 $query = $query->result_object();
434
435 $retval = array();
436 for ($i = 0, $c = count($query); $i < $c; $i++)
437 {
Andrey Andreev3722e502012-03-03 15:04:38 +0200438 $retval[$i] = new stdClass();
439 $retval[$i]->name = $query[$i]->Field;
Andrey Andreev10ecc842012-11-16 01:06:20 +0200440
441 sscanf($query[$i]->Type, '%[a-z](%d)',
442 $retval[$i]->type,
443 $retval[$i]->max_length
444 );
445
Andrey Andreev3722e502012-03-03 15:04:38 +0200446 $retval[$i]->default = $query[$i]->Default;
Andrey Andreev3722e502012-03-03 15:04:38 +0200447 $retval[$i]->primary_key = (int) ($query[$i]->Key === 'PRI');
448 }
449
450 return $retval;
Derek Allard2067d1a2008-11-13 22:59:24 +0000451 }
452
453 // --------------------------------------------------------------------
454
455 /**
Andrey Andreev4be5de12012-03-02 15:45:41 +0200456 * Error
Derek Allard2067d1a2008-11-13 22:59:24 +0000457 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200458 * Returns an array containing code and message of the last
459 * database error that has occured.
Derek Allard2067d1a2008-11-13 22:59:24 +0000460 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200461 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000462 */
Andrey Andreev4be5de12012-03-02 15:45:41 +0200463 public function error()
Derek Allard2067d1a2008-11-13 22:59:24 +0000464 {
Andrey Andreev4be5de12012-03-02 15:45:41 +0200465 return array('code' => mysql_errno($this->conn_id), 'message' => mysql_error($this->conn_id));
Derek Allard2067d1a2008-11-13 22:59:24 +0000466 }
467
468 // --------------------------------------------------------------------
469
470 /**
Andrey Andreev7eaa14f2012-10-09 11:34:01 +0300471 * FROM tables
472 *
473 * Groups tables in FROM clauses if needed, so there is no confusion
474 * about operator precedence.
475 *
476 * @return string
477 */
478 protected function _from_tables()
479 {
Andrey Andreevfce9abe2012-10-09 11:37:00 +0300480 if ( ! empty($this->qb_join) && count($this->qb_from) > 1)
Andrey Andreev7eaa14f2012-10-09 11:34:01 +0300481 {
482 return '('.implode(', ', $this->qb_from).')';
483 }
484
485 return implode(', ', $this->qb_from);
486 }
487
488 // --------------------------------------------------------------------
489
490 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000491 * Close DB Connection
492 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000493 * @return void
494 */
Andrey Andreev79922c02012-05-23 12:27:17 +0300495 protected function _close()
Derek Allard2067d1a2008-11-13 22:59:24 +0000496 {
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300497 // Error suppression to avoid annoying E_WARNINGs in cases
498 // where the connection has already been closed for some reason.
Andrey Andreev79922c02012-05-23 12:27:17 +0300499 @mysql_close($this->conn_id);
Derek Allard2067d1a2008-11-13 22:59:24 +0000500 }
Barry Mienydd671972010-10-04 16:33:58 +0200501
Derek Allard2067d1a2008-11-13 22:59:24 +0000502}
503
Derek Allard2067d1a2008-11-13 22:59:24 +0000504/* End of file mysql_driver.php */
Andrey Andreev79922c02012-05-23 12:27:17 +0300505/* Location: ./system/database/drivers/mysql/mysql_driver.php */