blob: 8d398c86644b220ee30755b0532111dcce71fe7a [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Andrey Andreevfe9309d2015-01-09 17:48:58 +02005 * An open source application development framework for PHP
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 Andreev1ff49e02012-01-27 11:30:41 +02008 *
Andrey Andreevfe9309d2015-01-09 17:48:58 +02009 * Copyright (c) 2014 - 2015, British Columbia Institute of Technology
Andrey Andreev1ff49e02012-01-27 11:30:41 +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 Andreevfe9309d2015-01-09 17:48:58 +020032 * @copyright Copyright (c) 2014 - 2015, British Columbia Institute of Technology (http://bcit.ca/)
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020033 * @license http://opensource.org/licenses/MIT MIT License
34 * @link http://codeigniter.com
35 * @since Version 1.3.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/**
Andrey Andreev1ff49e02012-01-27 11:30:41 +020041 * MySQLi Database Adapter Class
Derek Allard2067d1a2008-11-13 22:59:24 +000042 *
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_mysqli_driver extends CI_DB {
54
Andrey Andreeva24e52e2012-11-02 03:54:12 +020055 /**
56 * Database driver
57 *
58 * @var string
59 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +020060 public $dbdriver = 'mysqli';
Derek Allard2067d1a2008-11-13 22:59:24 +000061
62 /**
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 *
Derek Allard2067d1a2008-11-13 22:59:24 +000072 * 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 Andreev1ff49e02012-01-27 11:30:41 +020078 public $delete_hack = TRUE;
Derek Allard2067d1a2008-11-13 22:59:24 +000079
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
Derek Allard2067d1a2008-11-13 22:59:24 +000091 /**
Andrey Andreeva24e52e2012-11-02 03:54:12 +020092 * Identifier escape character
Derek Allard2067d1a2008-11-13 22:59:24 +000093 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +020094 * @var string
95 */
96 protected $_escape_char = '`';
97
98 // --------------------------------------------------------------------
99
100 /**
101 * Database connection
102 *
103 * @param bool $persistent
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200104 * @return object
Barry Mienydd671972010-10-04 16:33:58 +0200105 */
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300106 public function db_connect($persistent = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000107 {
Andrey Andreev1fb0cc72014-12-17 19:08:35 +0200108 // Do we have a socket path?
109 if ($this->hostname[0] === '/')
110 {
111 $hostname = NULL;
112 $port = NULL;
113 $socket = $this->hostname;
114 }
115 else
116 {
117 // Persistent connection support was added in PHP 5.3.0
118 $hostname = ($persistent === TRUE && is_php('5.3'))
119 ? 'p:'.$this->hostname : $this->hostname;
120 $port = empty($this->port) ? NULL : $this->port;
121 $socket = NULL;
122 }
123
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300124 $client_flags = ($this->compress === TRUE) ? MYSQLI_CLIENT_COMPRESS : 0;
Andrey Andreev37c85d72012-10-13 17:08:45 +0300125 $mysqli = mysqli_init();
Michiel Vugteveenc27721f2012-08-20 18:34:24 +0200126
Andrey Andreev9305a8b2015-01-26 12:09:58 +0200127 $mysqli->options(MYSQLI_OPT_CONNECT_TIMEOUT, 10);
Andrey Andreev9305a8b2015-01-26 12:09:58 +0200128
Andrey Andreevf8f14f32013-12-10 11:32:32 +0200129 if ($this->stricton)
130 {
131 $mysqli->options(MYSQLI_INIT_COMMAND, 'SET SESSION sql_mode="STRICT_ALL_TABLES"');
132 }
133
Andrey Andreev76e643e2015-07-16 13:14:49 +0300134 if (is_array($this->encrypt))
Tim Noltea0f18722015-06-05 13:40:18 -0400135 {
Andrey Andreev76e643e2015-07-16 13:14:49 +0300136 $ssl = array();
137 empty($this->encrypt['ssl_key']) OR $ssl['key'] = $this->encrypt['ssl_key'];
138 empty($this->encrypt['ssl_cert']) OR $ssl['cert'] = $this->encrypt['ssl_cert'];
139 empty($this->encrypt['ssl_ca']) OR $ssl['ca'] = $this->encrypt['ssl_ca'];
140 empty($this->encrypt['ssl_capath']) OR $ssl['capath'] = $this->encrypt['ssl_capath'];
141 empty($this->encrypt['ssl_cipher']) OR $ssl['cipher'] = $this->encrypt['ssl_cipher'];
Tim Nolteced557b2015-06-18 15:28:43 -0400142
Andrey Andreev76e643e2015-07-16 13:14:49 +0300143 if ( ! empty($ssl))
144 {
145 $client_flags |= MYSQLI_CLIENT_SSL;
146 $mysqli->ssl_set(
147 isset($ssl['key']) ? $ssl['key'] : NULL,
148 isset($ssl['cert']) ? $ssl['cert'] : NULL,
149 isset($ssl['ca']) ? $ssl['ca'] : NULL,
150 isset($ssl['capath']) ? $ssl['capath'] : NULL,
151 isset($ssl['cipher']) ? $ssl['cipher'] : NULL
152 );
153 }
Tim Noltea0f18722015-06-05 13:40:18 -0400154 }
155
Andrey Andreev76e643e2015-07-16 13:14:49 +0300156 if ($mysqli->real_connect($hostname, $this->username, $this->password, $this->database, $port, $socket, $client_flags))
Tim Noltea0f18722015-06-05 13:40:18 -0400157 {
Andrey Andreev76e643e2015-07-16 13:14:49 +0300158 // Prior to version 5.7.3, MySQL silently downgrades to an unencrypted connection if SSL setup fails
Andrey Andreev9194b492015-07-16 14:23:51 +0300159 if (
160 ($client_flags & MYSQLI_CLIENT_SSL)
161 && version_compare($mysqli->client_info, '5.7.3', '<=')
162 && empty($mysqli->query("SHOW STATUS LIKE 'ssl_cipher'")->fetch_object()->Value)
163 )
Tim Noltea0f18722015-06-05 13:40:18 -0400164 {
Andrey Andreev9194b492015-07-16 14:23:51 +0300165 $mysqli->close();
166 $message = 'MySQLi was configured for an SSL connection, but got an unencrypted connection instead!';
167 log_message('error', $message);
168 return ($this->db->db_debug) ? $this->db->display_error($message, '', TRUE) : FALSE;
Tim Noltea0f18722015-06-05 13:40:18 -0400169 }
170
171 return $mysqli;
172 }
Tim Noltea0f18722015-06-05 13:40:18 -0400173
174 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000175 }
176
177 // --------------------------------------------------------------------
178
179 /**
Derek Jones87cbafc2009-02-27 16:29:59 +0000180 * Reconnect
181 *
182 * Keep / reestablish the db connection if no queries have been
183 * sent for a length of time exceeding the server's idle timeout
184 *
Derek Jones87cbafc2009-02-27 16:29:59 +0000185 * @return void
186 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200187 public function reconnect()
Derek Jones87cbafc2009-02-27 16:29:59 +0000188 {
Andrey Andreev992f1752012-03-19 16:58:43 +0200189 if ($this->conn_id !== FALSE && $this->conn_id->ping() === FALSE)
Derek Jones87cbafc2009-02-27 16:29:59 +0000190 {
191 $this->conn_id = FALSE;
192 }
193 }
194
195 // --------------------------------------------------------------------
196
197 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000198 * Select the database
199 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200200 * @param string $database
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200201 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200202 */
Andrey Andreev11454e02012-02-22 16:05:47 +0200203 public function db_select($database = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000204 {
Andrey Andreev024ba2d2012-02-24 11:40:36 +0200205 if ($database === '')
206 {
207 $database = $this->database;
208 }
209
mdunischd3ddf972014-05-07 15:00:40 +0200210 if ($this->conn_id->select_db($database))
Andrey Andreev024ba2d2012-02-24 11:40:36 +0200211 {
212 $this->database = $database;
213 return TRUE;
214 }
215
216 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000217 }
218
219 // --------------------------------------------------------------------
220
221 /**
222 * Set client character set
223 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200224 * @param string $charset
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200225 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +0000226 */
Andrey Andreev95bd1d12012-03-12 16:22:28 +0200227 protected function _db_set_charset($charset)
Derek Allard2067d1a2008-11-13 22:59:24 +0000228 {
Andrey Andreev4b90a372014-03-10 10:24:24 +0200229 return $this->conn_id->set_charset($charset);
Derek Allard2067d1a2008-11-13 22:59:24 +0000230 }
231
232 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200233
Derek Allard2067d1a2008-11-13 22:59:24 +0000234 /**
Andrey Andreev08856b82012-03-03 03:19:28 +0200235 * Database version number
Derek Allard2067d1a2008-11-13 22:59:24 +0000236 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000237 * @return string
238 */
Andrey Andreev08856b82012-03-03 03:19:28 +0200239 public function version()
Derek Allard2067d1a2008-11-13 22:59:24 +0000240 {
Andrey Andreev2b730372012-11-05 17:01:11 +0200241 if (isset($this->data_cache['version']))
242 {
243 return $this->data_cache['version'];
244 }
Andrey Andreev2b730372012-11-05 17:01:11 +0200245
246 return $this->data_cache['version'] = $this->conn_id->server_info;
Derek Allard2067d1a2008-11-13 22:59:24 +0000247 }
248
249 // --------------------------------------------------------------------
250
251 /**
252 * Execute the query
253 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200254 * @param string $sql an SQL query
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200255 * @return mixed
Barry Mienydd671972010-10-04 16:33:58 +0200256 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200257 protected function _execute($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000258 {
mdunischd3ddf972014-05-07 15:00:40 +0200259 return $this->conn_id->query($this->_prep_query($sql));
Derek Allard2067d1a2008-11-13 22:59:24 +0000260 }
Barry Mienydd671972010-10-04 16:33:58 +0200261
Derek Allard2067d1a2008-11-13 22:59:24 +0000262 // --------------------------------------------------------------------
263
264 /**
265 * Prep the query
266 *
267 * If needed, each database adapter can prep the query string
268 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200269 * @param string $sql an SQL query
Derek Allard2067d1a2008-11-13 22:59:24 +0000270 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200271 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200272 protected function _prep_query($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000273 {
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200274 // mysqli_affected_rows() returns 0 for "DELETE FROM TABLE" queries. This hack
275 // modifies the query so that it a proper number of affected rows is returned.
276 if ($this->delete_hack === TRUE && preg_match('/^\s*DELETE\s+FROM\s+(\S+)\s*$/i', $sql))
Derek Allard2067d1a2008-11-13 22:59:24 +0000277 {
Andrey Andreevbe999662013-01-10 11:40:09 +0200278 return trim($sql).' WHERE 1=1';
Derek Allard2067d1a2008-11-13 22:59:24 +0000279 }
Barry Mienydd671972010-10-04 16:33:58 +0200280
Derek Allard2067d1a2008-11-13 22:59:24 +0000281 return $sql;
282 }
283
284 // --------------------------------------------------------------------
285
286 /**
287 * Begin Transaction
288 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200289 * @param bool $test_mode
Barry Mienydd671972010-10-04 16:33:58 +0200290 * @return bool
291 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200292 public function trans_begin($test_mode = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000293 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000294 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200295 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000296 {
297 return TRUE;
298 }
299
300 // Reset the transaction failure flag.
301 // If the $test_mode flag is set to TRUE transactions will be rolled back
302 // even if the queries produce a successful result.
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200303 $this->_trans_failure = ($test_mode === TRUE);
Derek Allard2067d1a2008-11-13 22:59:24 +0000304
Andrey Andreev3c5ec852013-09-13 15:01:08 +0300305 $this->conn_id->autocommit(FALSE);
306 return is_php('5.5')
307 ? $this->conn_id->begin_transaction()
308 : $this->simple_query('START TRANSACTION'); // can also be BEGIN or BEGIN WORK
Derek Allard2067d1a2008-11-13 22:59:24 +0000309 }
310
311 // --------------------------------------------------------------------
312
313 /**
314 * Commit Transaction
315 *
Barry Mienydd671972010-10-04 16:33:58 +0200316 * @return bool
317 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200318 public function trans_commit()
Derek Allard2067d1a2008-11-13 22:59:24 +0000319 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000320 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200321 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000322 {
323 return TRUE;
324 }
325
Andrey Andreev3c5ec852013-09-13 15:01:08 +0300326 if ($this->conn_id->commit())
327 {
328 $this->conn_id->autocommit(TRUE);
329 return TRUE;
330 }
331
332 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000333 }
334
335 // --------------------------------------------------------------------
336
337 /**
338 * Rollback Transaction
339 *
Barry Mienydd671972010-10-04 16:33:58 +0200340 * @return bool
341 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200342 public function trans_rollback()
Derek Allard2067d1a2008-11-13 22:59:24 +0000343 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000344 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200345 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000346 {
347 return TRUE;
348 }
349
Andrey Andreev3c5ec852013-09-13 15:01:08 +0300350 if ($this->conn_id->rollback())
351 {
352 $this->conn_id->autocommit(TRUE);
353 return TRUE;
354 }
355
356 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000357 }
358
359 // --------------------------------------------------------------------
360
361 /**
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200362 * Platform-dependant string escape
Derek Allard2067d1a2008-11-13 22:59:24 +0000363 *
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200364 * @param string
Derek Allard2067d1a2008-11-13 22:59:24 +0000365 * @return string
366 */
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200367 protected function _escape_str($str)
Derek Allard2067d1a2008-11-13 22:59:24 +0000368 {
Andrey Andreev62fad282014-06-19 15:25:40 +0300369 return $this->conn_id->real_escape_string($str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000370 }
Barry Mienydd671972010-10-04 16:33:58 +0200371
Derek Allard2067d1a2008-11-13 22:59:24 +0000372 // --------------------------------------------------------------------
373
374 /**
375 * Affected Rows
376 *
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200377 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000378 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200379 public function affected_rows()
Derek Allard2067d1a2008-11-13 22:59:24 +0000380 {
Andrey Andreev992f1752012-03-19 16:58:43 +0200381 return $this->conn_id->affected_rows;
Derek Allard2067d1a2008-11-13 22:59:24 +0000382 }
Barry Mienydd671972010-10-04 16:33:58 +0200383
Derek Allard2067d1a2008-11-13 22:59:24 +0000384 // --------------------------------------------------------------------
385
386 /**
387 * Insert ID
388 *
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200389 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000390 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200391 public function insert_id()
Derek Allard2067d1a2008-11-13 22:59:24 +0000392 {
Andrey Andreev992f1752012-03-19 16:58:43 +0200393 return $this->conn_id->insert_id;
Derek Allard2067d1a2008-11-13 22:59:24 +0000394 }
395
396 // --------------------------------------------------------------------
397
398 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000399 * List table query
400 *
401 * Generates a platform-specific query string so that the table names can be fetched
402 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200403 * @param bool $prefix_limit
Derek Allard2067d1a2008-11-13 22:59:24 +0000404 * @return string
405 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200406 protected function _list_tables($prefix_limit = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000407 {
Andrey Andreev473130a2012-06-24 02:51:18 +0300408 $sql = 'SHOW TABLES FROM '.$this->escape_identifiers($this->database);
Barry Mienydd671972010-10-04 16:33:58 +0200409
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100410 if ($prefix_limit !== FALSE && $this->dbprefix !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000411 {
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200412 return $sql." LIKE '".$this->escape_like_str($this->dbprefix)."%'";
Derek Allard2067d1a2008-11-13 22:59:24 +0000413 }
Barry Mienydd671972010-10-04 16:33:58 +0200414
Derek Allard2067d1a2008-11-13 22:59:24 +0000415 return $sql;
416 }
417
418 // --------------------------------------------------------------------
419
420 /**
421 * Show column query
422 *
423 * Generates a platform-specific query string so that the column names can be fetched
424 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200425 * @param string $table
Derek Allard2067d1a2008-11-13 22:59:24 +0000426 * @return string
427 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200428 protected function _list_columns($table = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000429 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200430 return 'SHOW COLUMNS FROM '.$this->protect_identifiers($table, TRUE, NULL, FALSE);
Derek Allard2067d1a2008-11-13 22:59:24 +0000431 }
432
433 // --------------------------------------------------------------------
434
435 /**
Andrey Andreev3722e502012-03-03 15:04:38 +0200436 * Returns an object with field data
Derek Allard2067d1a2008-11-13 22:59:24 +0000437 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200438 * @param string $table
Andrey Andreev10ecc842012-11-16 01:06:20 +0200439 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000440 */
Andrey Andreev5350f052015-01-12 12:33:37 +0200441 public function field_data($table)
Derek Allard2067d1a2008-11-13 22:59:24 +0000442 {
Andrey Andreev10ecc842012-11-16 01:06:20 +0200443 if (($query = $this->query('SHOW COLUMNS FROM '.$this->protect_identifiers($table, TRUE, NULL, FALSE))) === FALSE)
444 {
445 return FALSE;
446 }
Andrey Andreev3722e502012-03-03 15:04:38 +0200447 $query = $query->result_object();
448
449 $retval = array();
450 for ($i = 0, $c = count($query); $i < $c; $i++)
451 {
Andrey Andreev3722e502012-03-03 15:04:38 +0200452 $retval[$i] = new stdClass();
453 $retval[$i]->name = $query[$i]->Field;
Andrey Andreev10ecc842012-11-16 01:06:20 +0200454
455 sscanf($query[$i]->Type, '%[a-z](%d)',
456 $retval[$i]->type,
457 $retval[$i]->max_length
458 );
459
Andrey Andreev3722e502012-03-03 15:04:38 +0200460 $retval[$i]->default = $query[$i]->Default;
Andrey Andreev3722e502012-03-03 15:04:38 +0200461 $retval[$i]->primary_key = (int) ($query[$i]->Key === 'PRI');
462 }
463
464 return $retval;
Derek Allard2067d1a2008-11-13 22:59:24 +0000465 }
466
467 // --------------------------------------------------------------------
468
469 /**
Andrey Andreev4be5de12012-03-02 15:45:41 +0200470 * Error
Derek Allard2067d1a2008-11-13 22:59:24 +0000471 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200472 * Returns an array containing code and message of the last
Claudio Galdiolob993b4b2015-01-28 12:22:38 -0500473 * database error that has occurred.
Derek Allard2067d1a2008-11-13 22:59:24 +0000474 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200475 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000476 */
Andrey Andreev4be5de12012-03-02 15:45:41 +0200477 public function error()
Derek Allard2067d1a2008-11-13 22:59:24 +0000478 {
Andrey Andreevdbad54e2012-10-05 21:53:32 +0300479 if ( ! empty($this->conn_id->connect_errno))
480 {
481 return array(
482 'code' => $this->conn_id->connect_errno,
483 'message' => is_php('5.2.9') ? $this->conn_id->connect_error : mysqli_connect_error()
484 );
485 }
486
Andrey Andreev992f1752012-03-19 16:58:43 +0200487 return array('code' => $this->conn_id->errno, 'message' => $this->conn_id->error);
Derek Allard2067d1a2008-11-13 22:59:24 +0000488 }
Barry Mienydd671972010-10-04 16:33:58 +0200489
Derek Allard2067d1a2008-11-13 22:59:24 +0000490 // --------------------------------------------------------------------
491
492 /**
Andrey Andreev7eaa14f2012-10-09 11:34:01 +0300493 * FROM tables
494 *
495 * Groups tables in FROM clauses if needed, so there is no confusion
496 * about operator precedence.
497 *
498 * @return string
499 */
500 protected function _from_tables()
501 {
Andrey Andreevfce9abe2012-10-09 11:37:00 +0300502 if ( ! empty($this->qb_join) && count($this->qb_from) > 1)
Andrey Andreev7eaa14f2012-10-09 11:34:01 +0300503 {
504 return '('.implode(', ', $this->qb_from).')';
505 }
506
507 return implode(', ', $this->qb_from);
508 }
509
510 // --------------------------------------------------------------------
511
512 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000513 * Close DB Connection
514 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000515 * @return void
516 */
Andrey Andreev79922c02012-05-23 12:27:17 +0300517 protected function _close()
Derek Allard2067d1a2008-11-13 22:59:24 +0000518 {
Andrey Andreev992f1752012-03-19 16:58:43 +0200519 $this->conn_id->close();
Derek Allard2067d1a2008-11-13 22:59:24 +0000520 }
521
Derek Allard2067d1a2008-11-13 22:59:24 +0000522}