blob: 61a37bd0366b614544b1b5c4a482f8b2cdb3b069 [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
Tim Noltea0f18722015-06-05 13:40:18 -040089 /**
Tim Nolteced557b2015-06-18 15:28:43 -040090 * Used to set various SSL options that can be used when making SSL connections.
Tim Noltec09ab9d2015-06-08 10:40:26 -040091 *
Tim Noltea0f18722015-06-05 13:40:18 -040092 * @see http://php.net/manual/en/mysqli.ssl-set.php Documentation for MySQLi
93 *
Tim Nolteced557b2015-06-18 15:28:43 -040094 * @var array
Tim Noltea0f18722015-06-05 13:40:18 -040095 */
Tim Nolteced557b2015-06-18 15:28:43 -040096 public $ssl_options = array(
97 "ssl_key" => '', // The path name to the key file.
98 "ssl_cert" => '', // The path name to the certificate file.
99 "ssl_ca" => '', // The path name to the certificate authority file.
100 "ssl_capath" => '', // The pathname to a directory that contains trusted SSL CA certificates in PEM format.
101 "ssl_cipher" => '' // A list of allowable ciphers to use for SSL encryption.
102 );
Tim Noltea0f18722015-06-05 13:40:18 -0400103
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200104 // --------------------------------------------------------------------
105
Derek Allard2067d1a2008-11-13 22:59:24 +0000106 /**
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200107 * Identifier escape character
Derek Allard2067d1a2008-11-13 22:59:24 +0000108 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200109 * @var string
110 */
111 protected $_escape_char = '`';
112
113 // --------------------------------------------------------------------
114
115 /**
116 * Database connection
117 *
118 * @param bool $persistent
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200119 * @return object
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300120 * @todo SSL support
Barry Mienydd671972010-10-04 16:33:58 +0200121 */
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300122 public function db_connect($persistent = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000123 {
Andrey Andreev1fb0cc72014-12-17 19:08:35 +0200124 // Do we have a socket path?
125 if ($this->hostname[0] === '/')
126 {
127 $hostname = NULL;
128 $port = NULL;
129 $socket = $this->hostname;
130 }
131 else
132 {
133 // Persistent connection support was added in PHP 5.3.0
134 $hostname = ($persistent === TRUE && is_php('5.3'))
135 ? 'p:'.$this->hostname : $this->hostname;
136 $port = empty($this->port) ? NULL : $this->port;
137 $socket = NULL;
138 }
139
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300140 $client_flags = ($this->compress === TRUE) ? MYSQLI_CLIENT_COMPRESS : 0;
Andrey Andreev37c85d72012-10-13 17:08:45 +0300141 $mysqli = mysqli_init();
Michiel Vugteveenc27721f2012-08-20 18:34:24 +0200142
Andrey Andreev9305a8b2015-01-26 12:09:58 +0200143 $mysqli->options(MYSQLI_OPT_CONNECT_TIMEOUT, 10);
Andrey Andreev9305a8b2015-01-26 12:09:58 +0200144
Andrey Andreevf8f14f32013-12-10 11:32:32 +0200145 if ($this->stricton)
146 {
147 $mysqli->options(MYSQLI_INIT_COMMAND, 'SET SESSION sql_mode="STRICT_ALL_TABLES"');
148 }
149
Tim Noltea0f18722015-06-05 13:40:18 -0400150 if ($this->encrypt === TRUE)
151 {
Tim Nolteced557b2015-06-18 15:28:43 -0400152 $ssl_key = array_key_exists('ssl_key', $this->ssl_options) ? $this->ssl_options['ssl_key'] : '';
153 $ssl_cert = array_key_exists('ssl_cert', $this->ssl_options) ? $this->ssl_options['ssl_cert'] : '';
154 $ssl_ca = array_key_exists('ssl_ca', $this->ssl_options) ? $this->ssl_options['ssl_ca'] : '';
155 $ssl_capath = array_key_exists('ssl_capath', $this->ssl_options) ? $this->ssl_options['ssl_capath'] : '';
156 $ssl_cipher = array_key_exists('ssl_cipher', $this->ssl_options) ? $this->ssl_options['ssl_cipher'] : '';
157
158 $mysqli->ssl_set($ssl_key, $ssl_cert, $ssl_ca, $ssl_capath, $ssl_cipher);
Tim Noltea0f18722015-06-05 13:40:18 -0400159 $client_flags |= MYSQLI_CLIENT_SSL;
160 }
161
162 $connected = @$mysqli->real_connect($hostname, $this->username, $this->password, $this->database, $port, $socket, $client_flags);
163
164 if ($connected)
165 {
166 // If SSL was requested we want to do some checking and log an error if an SSL connection wasn't established.
167 if ($this->encrypt === TRUE)
168 {
169 $res = $mysqli->query("SHOW STATUS LIKE 'ssl_cipher';");
170 $ssl_status = $res->fetch_row();
171
172 if ($ssl_status[1] == '')
173 {
174 log_message('error',
175 "Problem With MySQLi SSL: An SSL connection was requested but the resulting connection is not using SSL!");
176 }
177 }
178
179 return $mysqli;
180 }
181 else
182 {
183 if ($mysqli->connect_errno)
184 {
185 log_message('error',
186 'msqli connect failed, error: ' . mysqli_connect_error() . " | " . $mysqli->connect_error . " | " . $mysqli->connect_errno);
187 }
188 }
189
190 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000191 }
192
193 // --------------------------------------------------------------------
194
195 /**
Derek Jones87cbafc2009-02-27 16:29:59 +0000196 * Reconnect
197 *
198 * Keep / reestablish the db connection if no queries have been
199 * sent for a length of time exceeding the server's idle timeout
200 *
Derek Jones87cbafc2009-02-27 16:29:59 +0000201 * @return void
202 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200203 public function reconnect()
Derek Jones87cbafc2009-02-27 16:29:59 +0000204 {
Andrey Andreev992f1752012-03-19 16:58:43 +0200205 if ($this->conn_id !== FALSE && $this->conn_id->ping() === FALSE)
Derek Jones87cbafc2009-02-27 16:29:59 +0000206 {
207 $this->conn_id = FALSE;
208 }
209 }
210
211 // --------------------------------------------------------------------
212
213 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000214 * Select the database
215 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200216 * @param string $database
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200217 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200218 */
Andrey Andreev11454e02012-02-22 16:05:47 +0200219 public function db_select($database = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000220 {
Andrey Andreev024ba2d2012-02-24 11:40:36 +0200221 if ($database === '')
222 {
223 $database = $this->database;
224 }
225
mdunischd3ddf972014-05-07 15:00:40 +0200226 if ($this->conn_id->select_db($database))
Andrey Andreev024ba2d2012-02-24 11:40:36 +0200227 {
228 $this->database = $database;
229 return TRUE;
230 }
231
232 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000233 }
234
235 // --------------------------------------------------------------------
236
237 /**
238 * Set client character set
239 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200240 * @param string $charset
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200241 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +0000242 */
Andrey Andreev95bd1d12012-03-12 16:22:28 +0200243 protected function _db_set_charset($charset)
Derek Allard2067d1a2008-11-13 22:59:24 +0000244 {
Andrey Andreev4b90a372014-03-10 10:24:24 +0200245 return $this->conn_id->set_charset($charset);
Derek Allard2067d1a2008-11-13 22:59:24 +0000246 }
247
248 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200249
Derek Allard2067d1a2008-11-13 22:59:24 +0000250 /**
Andrey Andreev08856b82012-03-03 03:19:28 +0200251 * Database version number
Derek Allard2067d1a2008-11-13 22:59:24 +0000252 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000253 * @return string
254 */
Andrey Andreev08856b82012-03-03 03:19:28 +0200255 public function version()
Derek Allard2067d1a2008-11-13 22:59:24 +0000256 {
Andrey Andreev2b730372012-11-05 17:01:11 +0200257 if (isset($this->data_cache['version']))
258 {
259 return $this->data_cache['version'];
260 }
Andrey Andreev2b730372012-11-05 17:01:11 +0200261
262 return $this->data_cache['version'] = $this->conn_id->server_info;
Derek Allard2067d1a2008-11-13 22:59:24 +0000263 }
264
265 // --------------------------------------------------------------------
266
267 /**
268 * Execute the query
269 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200270 * @param string $sql an SQL query
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200271 * @return mixed
Barry Mienydd671972010-10-04 16:33:58 +0200272 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200273 protected function _execute($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000274 {
mdunischd3ddf972014-05-07 15:00:40 +0200275 return $this->conn_id->query($this->_prep_query($sql));
Derek Allard2067d1a2008-11-13 22:59:24 +0000276 }
Barry Mienydd671972010-10-04 16:33:58 +0200277
Derek Allard2067d1a2008-11-13 22:59:24 +0000278 // --------------------------------------------------------------------
279
280 /**
281 * Prep the query
282 *
283 * If needed, each database adapter can prep the query string
284 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200285 * @param string $sql an SQL query
Derek Allard2067d1a2008-11-13 22:59:24 +0000286 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200287 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200288 protected function _prep_query($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000289 {
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200290 // mysqli_affected_rows() returns 0 for "DELETE FROM TABLE" queries. This hack
291 // modifies the query so that it a proper number of affected rows is returned.
292 if ($this->delete_hack === TRUE && preg_match('/^\s*DELETE\s+FROM\s+(\S+)\s*$/i', $sql))
Derek Allard2067d1a2008-11-13 22:59:24 +0000293 {
Andrey Andreevbe999662013-01-10 11:40:09 +0200294 return trim($sql).' WHERE 1=1';
Derek Allard2067d1a2008-11-13 22:59:24 +0000295 }
Barry Mienydd671972010-10-04 16:33:58 +0200296
Derek Allard2067d1a2008-11-13 22:59:24 +0000297 return $sql;
298 }
299
300 // --------------------------------------------------------------------
301
302 /**
303 * Begin Transaction
304 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200305 * @param bool $test_mode
Barry Mienydd671972010-10-04 16:33:58 +0200306 * @return bool
307 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200308 public function trans_begin($test_mode = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000309 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000310 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200311 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000312 {
313 return TRUE;
314 }
315
316 // Reset the transaction failure flag.
317 // If the $test_mode flag is set to TRUE transactions will be rolled back
318 // even if the queries produce a successful result.
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200319 $this->_trans_failure = ($test_mode === TRUE);
Derek Allard2067d1a2008-11-13 22:59:24 +0000320
Andrey Andreev3c5ec852013-09-13 15:01:08 +0300321 $this->conn_id->autocommit(FALSE);
322 return is_php('5.5')
323 ? $this->conn_id->begin_transaction()
324 : $this->simple_query('START TRANSACTION'); // can also be BEGIN or BEGIN WORK
Derek Allard2067d1a2008-11-13 22:59:24 +0000325 }
326
327 // --------------------------------------------------------------------
328
329 /**
330 * Commit Transaction
331 *
Barry Mienydd671972010-10-04 16:33:58 +0200332 * @return bool
333 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200334 public function trans_commit()
Derek Allard2067d1a2008-11-13 22:59:24 +0000335 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000336 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200337 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000338 {
339 return TRUE;
340 }
341
Andrey Andreev3c5ec852013-09-13 15:01:08 +0300342 if ($this->conn_id->commit())
343 {
344 $this->conn_id->autocommit(TRUE);
345 return TRUE;
346 }
347
348 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000349 }
350
351 // --------------------------------------------------------------------
352
353 /**
354 * Rollback Transaction
355 *
Barry Mienydd671972010-10-04 16:33:58 +0200356 * @return bool
357 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200358 public function trans_rollback()
Derek Allard2067d1a2008-11-13 22:59:24 +0000359 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000360 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200361 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000362 {
363 return TRUE;
364 }
365
Andrey Andreev3c5ec852013-09-13 15:01:08 +0300366 if ($this->conn_id->rollback())
367 {
368 $this->conn_id->autocommit(TRUE);
369 return TRUE;
370 }
371
372 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000373 }
374
375 // --------------------------------------------------------------------
376
377 /**
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200378 * Platform-dependant string escape
Derek Allard2067d1a2008-11-13 22:59:24 +0000379 *
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200380 * @param string
Derek Allard2067d1a2008-11-13 22:59:24 +0000381 * @return string
382 */
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200383 protected function _escape_str($str)
Derek Allard2067d1a2008-11-13 22:59:24 +0000384 {
Andrey Andreev62fad282014-06-19 15:25:40 +0300385 return $this->conn_id->real_escape_string($str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000386 }
Barry Mienydd671972010-10-04 16:33:58 +0200387
Derek Allard2067d1a2008-11-13 22:59:24 +0000388 // --------------------------------------------------------------------
389
390 /**
391 * Affected Rows
392 *
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200393 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000394 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200395 public function affected_rows()
Derek Allard2067d1a2008-11-13 22:59:24 +0000396 {
Andrey Andreev992f1752012-03-19 16:58:43 +0200397 return $this->conn_id->affected_rows;
Derek Allard2067d1a2008-11-13 22:59:24 +0000398 }
Barry Mienydd671972010-10-04 16:33:58 +0200399
Derek Allard2067d1a2008-11-13 22:59:24 +0000400 // --------------------------------------------------------------------
401
402 /**
403 * Insert ID
404 *
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200405 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000406 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200407 public function insert_id()
Derek Allard2067d1a2008-11-13 22:59:24 +0000408 {
Andrey Andreev992f1752012-03-19 16:58:43 +0200409 return $this->conn_id->insert_id;
Derek Allard2067d1a2008-11-13 22:59:24 +0000410 }
411
412 // --------------------------------------------------------------------
413
414 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000415 * List table query
416 *
417 * Generates a platform-specific query string so that the table names can be fetched
418 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200419 * @param bool $prefix_limit
Derek Allard2067d1a2008-11-13 22:59:24 +0000420 * @return string
421 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200422 protected function _list_tables($prefix_limit = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000423 {
Andrey Andreev473130a2012-06-24 02:51:18 +0300424 $sql = 'SHOW TABLES FROM '.$this->escape_identifiers($this->database);
Barry Mienydd671972010-10-04 16:33:58 +0200425
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100426 if ($prefix_limit !== FALSE && $this->dbprefix !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000427 {
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200428 return $sql." LIKE '".$this->escape_like_str($this->dbprefix)."%'";
Derek Allard2067d1a2008-11-13 22:59:24 +0000429 }
Barry Mienydd671972010-10-04 16:33:58 +0200430
Derek Allard2067d1a2008-11-13 22:59:24 +0000431 return $sql;
432 }
433
434 // --------------------------------------------------------------------
435
436 /**
437 * Show column query
438 *
439 * Generates a platform-specific query string so that the column names can be fetched
440 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200441 * @param string $table
Derek Allard2067d1a2008-11-13 22:59:24 +0000442 * @return string
443 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200444 protected function _list_columns($table = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000445 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200446 return 'SHOW COLUMNS FROM '.$this->protect_identifiers($table, TRUE, NULL, FALSE);
Derek Allard2067d1a2008-11-13 22:59:24 +0000447 }
448
449 // --------------------------------------------------------------------
450
451 /**
Andrey Andreev3722e502012-03-03 15:04:38 +0200452 * Returns an object with field data
Derek Allard2067d1a2008-11-13 22:59:24 +0000453 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200454 * @param string $table
Andrey Andreev10ecc842012-11-16 01:06:20 +0200455 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000456 */
Andrey Andreev5350f052015-01-12 12:33:37 +0200457 public function field_data($table)
Derek Allard2067d1a2008-11-13 22:59:24 +0000458 {
Andrey Andreev10ecc842012-11-16 01:06:20 +0200459 if (($query = $this->query('SHOW COLUMNS FROM '.$this->protect_identifiers($table, TRUE, NULL, FALSE))) === FALSE)
460 {
461 return FALSE;
462 }
Andrey Andreev3722e502012-03-03 15:04:38 +0200463 $query = $query->result_object();
464
465 $retval = array();
466 for ($i = 0, $c = count($query); $i < $c; $i++)
467 {
Andrey Andreev3722e502012-03-03 15:04:38 +0200468 $retval[$i] = new stdClass();
469 $retval[$i]->name = $query[$i]->Field;
Andrey Andreev10ecc842012-11-16 01:06:20 +0200470
471 sscanf($query[$i]->Type, '%[a-z](%d)',
472 $retval[$i]->type,
473 $retval[$i]->max_length
474 );
475
Andrey Andreev3722e502012-03-03 15:04:38 +0200476 $retval[$i]->default = $query[$i]->Default;
Andrey Andreev3722e502012-03-03 15:04:38 +0200477 $retval[$i]->primary_key = (int) ($query[$i]->Key === 'PRI');
478 }
479
480 return $retval;
Derek Allard2067d1a2008-11-13 22:59:24 +0000481 }
482
483 // --------------------------------------------------------------------
484
485 /**
Andrey Andreev4be5de12012-03-02 15:45:41 +0200486 * Error
Derek Allard2067d1a2008-11-13 22:59:24 +0000487 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200488 * Returns an array containing code and message of the last
Claudio Galdiolob993b4b2015-01-28 12:22:38 -0500489 * database error that has occurred.
Derek Allard2067d1a2008-11-13 22:59:24 +0000490 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200491 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000492 */
Andrey Andreev4be5de12012-03-02 15:45:41 +0200493 public function error()
Derek Allard2067d1a2008-11-13 22:59:24 +0000494 {
Andrey Andreevdbad54e2012-10-05 21:53:32 +0300495 if ( ! empty($this->conn_id->connect_errno))
496 {
497 return array(
498 'code' => $this->conn_id->connect_errno,
499 'message' => is_php('5.2.9') ? $this->conn_id->connect_error : mysqli_connect_error()
500 );
501 }
502
Andrey Andreev992f1752012-03-19 16:58:43 +0200503 return array('code' => $this->conn_id->errno, 'message' => $this->conn_id->error);
Derek Allard2067d1a2008-11-13 22:59:24 +0000504 }
Barry Mienydd671972010-10-04 16:33:58 +0200505
Derek Allard2067d1a2008-11-13 22:59:24 +0000506 // --------------------------------------------------------------------
507
508 /**
Andrey Andreev7eaa14f2012-10-09 11:34:01 +0300509 * FROM tables
510 *
511 * Groups tables in FROM clauses if needed, so there is no confusion
512 * about operator precedence.
513 *
514 * @return string
515 */
516 protected function _from_tables()
517 {
Andrey Andreevfce9abe2012-10-09 11:37:00 +0300518 if ( ! empty($this->qb_join) && count($this->qb_from) > 1)
Andrey Andreev7eaa14f2012-10-09 11:34:01 +0300519 {
520 return '('.implode(', ', $this->qb_from).')';
521 }
522
523 return implode(', ', $this->qb_from);
524 }
525
526 // --------------------------------------------------------------------
527
528 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000529 * Close DB Connection
530 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000531 * @return void
532 */
Andrey Andreev79922c02012-05-23 12:27:17 +0300533 protected function _close()
Derek Allard2067d1a2008-11-13 22:59:24 +0000534 {
Andrey Andreev992f1752012-03-19 16:58:43 +0200535 $this->conn_id->close();
Derek Allard2067d1a2008-11-13 22:59:24 +0000536 }
537
Derek Allard2067d1a2008-11-13 22:59:24 +0000538}