blob: d16c98a684659d307b61b628f5e49e67db427d1b [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
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300105 * @todo SSL support
Barry Mienydd671972010-10-04 16:33:58 +0200106 */
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300107 public function db_connect($persistent = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000108 {
Andrey Andreev1fb0cc72014-12-17 19:08:35 +0200109 // Do we have a socket path?
110 if ($this->hostname[0] === '/')
111 {
112 $hostname = NULL;
113 $port = NULL;
114 $socket = $this->hostname;
115 }
116 else
117 {
118 // Persistent connection support was added in PHP 5.3.0
119 $hostname = ($persistent === TRUE && is_php('5.3'))
120 ? 'p:'.$this->hostname : $this->hostname;
121 $port = empty($this->port) ? NULL : $this->port;
122 $socket = NULL;
123 }
124
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300125 $client_flags = ($this->compress === TRUE) ? MYSQLI_CLIENT_COMPRESS : 0;
Andrey Andreev37c85d72012-10-13 17:08:45 +0300126 $mysqli = mysqli_init();
Michiel Vugteveenc27721f2012-08-20 18:34:24 +0200127
Andrey Andreev9305a8b2015-01-26 12:09:58 +0200128 $mysqli->options(MYSQLI_OPT_CONNECT_TIMEOUT, 10);
129 $mysqli->options(MYSQLI_OPT_READ_TIMEOUT, 5);
130 $mysqli->options(MYSQLI_OPT_RECONNECT, 1);
131
Andrey Andreevf8f14f32013-12-10 11:32:32 +0200132 if ($this->stricton)
133 {
134 $mysqli->options(MYSQLI_INIT_COMMAND, 'SET SESSION sql_mode="STRICT_ALL_TABLES"');
135 }
136
Andrey Andreev1fb0cc72014-12-17 19:08:35 +0200137 return $mysqli->real_connect($hostname, $this->username, $this->password, $this->database, $port, $socket, $client_flags)
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300138 ? $mysqli : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000139 }
140
141 // --------------------------------------------------------------------
142
143 /**
Derek Jones87cbafc2009-02-27 16:29:59 +0000144 * Reconnect
145 *
146 * Keep / reestablish the db connection if no queries have been
147 * sent for a length of time exceeding the server's idle timeout
148 *
Derek Jones87cbafc2009-02-27 16:29:59 +0000149 * @return void
150 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200151 public function reconnect()
Derek Jones87cbafc2009-02-27 16:29:59 +0000152 {
Andrey Andreev992f1752012-03-19 16:58:43 +0200153 if ($this->conn_id !== FALSE && $this->conn_id->ping() === FALSE)
Derek Jones87cbafc2009-02-27 16:29:59 +0000154 {
155 $this->conn_id = FALSE;
156 }
157 }
158
159 // --------------------------------------------------------------------
160
161 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000162 * Select the database
163 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200164 * @param string $database
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200165 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200166 */
Andrey Andreev11454e02012-02-22 16:05:47 +0200167 public function db_select($database = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000168 {
Andrey Andreev024ba2d2012-02-24 11:40:36 +0200169 if ($database === '')
170 {
171 $database = $this->database;
172 }
173
mdunischd3ddf972014-05-07 15:00:40 +0200174 if ($this->conn_id->select_db($database))
Andrey Andreev024ba2d2012-02-24 11:40:36 +0200175 {
176 $this->database = $database;
177 return TRUE;
178 }
179
180 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000181 }
182
183 // --------------------------------------------------------------------
184
185 /**
186 * Set client character set
187 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200188 * @param string $charset
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200189 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +0000190 */
Andrey Andreev95bd1d12012-03-12 16:22:28 +0200191 protected function _db_set_charset($charset)
Derek Allard2067d1a2008-11-13 22:59:24 +0000192 {
Andrey Andreev4b90a372014-03-10 10:24:24 +0200193 return $this->conn_id->set_charset($charset);
Derek Allard2067d1a2008-11-13 22:59:24 +0000194 }
195
196 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200197
Derek Allard2067d1a2008-11-13 22:59:24 +0000198 /**
Andrey Andreev08856b82012-03-03 03:19:28 +0200199 * Database version number
Derek Allard2067d1a2008-11-13 22:59:24 +0000200 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000201 * @return string
202 */
Andrey Andreev08856b82012-03-03 03:19:28 +0200203 public function version()
Derek Allard2067d1a2008-11-13 22:59:24 +0000204 {
Andrey Andreev2b730372012-11-05 17:01:11 +0200205 if (isset($this->data_cache['version']))
206 {
207 return $this->data_cache['version'];
208 }
209 elseif ( ! $this->conn_id)
210 {
211 $this->initialize();
212 }
213
214 return $this->data_cache['version'] = $this->conn_id->server_info;
Derek Allard2067d1a2008-11-13 22:59:24 +0000215 }
216
217 // --------------------------------------------------------------------
218
219 /**
220 * Execute the query
221 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200222 * @param string $sql an SQL query
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200223 * @return mixed
Barry Mienydd671972010-10-04 16:33:58 +0200224 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200225 protected function _execute($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000226 {
mdunischd3ddf972014-05-07 15:00:40 +0200227 return $this->conn_id->query($this->_prep_query($sql));
Derek Allard2067d1a2008-11-13 22:59:24 +0000228 }
Barry Mienydd671972010-10-04 16:33:58 +0200229
Derek Allard2067d1a2008-11-13 22:59:24 +0000230 // --------------------------------------------------------------------
231
232 /**
233 * Prep the query
234 *
235 * If needed, each database adapter can prep the query string
236 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200237 * @param string $sql an SQL query
Derek Allard2067d1a2008-11-13 22:59:24 +0000238 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200239 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200240 protected function _prep_query($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000241 {
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200242 // mysqli_affected_rows() returns 0 for "DELETE FROM TABLE" queries. This hack
243 // modifies the query so that it a proper number of affected rows is returned.
244 if ($this->delete_hack === TRUE && preg_match('/^\s*DELETE\s+FROM\s+(\S+)\s*$/i', $sql))
Derek Allard2067d1a2008-11-13 22:59:24 +0000245 {
Andrey Andreevbe999662013-01-10 11:40:09 +0200246 return trim($sql).' WHERE 1=1';
Derek Allard2067d1a2008-11-13 22:59:24 +0000247 }
Barry Mienydd671972010-10-04 16:33:58 +0200248
Derek Allard2067d1a2008-11-13 22:59:24 +0000249 return $sql;
250 }
251
252 // --------------------------------------------------------------------
253
254 /**
255 * Begin Transaction
256 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200257 * @param bool $test_mode
Barry Mienydd671972010-10-04 16:33:58 +0200258 * @return bool
259 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200260 public function trans_begin($test_mode = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000261 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000262 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200263 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000264 {
265 return TRUE;
266 }
267
268 // Reset the transaction failure flag.
269 // If the $test_mode flag is set to TRUE transactions will be rolled back
270 // even if the queries produce a successful result.
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200271 $this->_trans_failure = ($test_mode === TRUE);
Derek Allard2067d1a2008-11-13 22:59:24 +0000272
Andrey Andreev3c5ec852013-09-13 15:01:08 +0300273 $this->conn_id->autocommit(FALSE);
274 return is_php('5.5')
275 ? $this->conn_id->begin_transaction()
276 : $this->simple_query('START TRANSACTION'); // can also be BEGIN or BEGIN WORK
Derek Allard2067d1a2008-11-13 22:59:24 +0000277 }
278
279 // --------------------------------------------------------------------
280
281 /**
282 * Commit Transaction
283 *
Barry Mienydd671972010-10-04 16:33:58 +0200284 * @return bool
285 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200286 public function trans_commit()
Derek Allard2067d1a2008-11-13 22:59:24 +0000287 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000288 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200289 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000290 {
291 return TRUE;
292 }
293
Andrey Andreev3c5ec852013-09-13 15:01:08 +0300294 if ($this->conn_id->commit())
295 {
296 $this->conn_id->autocommit(TRUE);
297 return TRUE;
298 }
299
300 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000301 }
302
303 // --------------------------------------------------------------------
304
305 /**
306 * Rollback Transaction
307 *
Barry Mienydd671972010-10-04 16:33:58 +0200308 * @return bool
309 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200310 public function trans_rollback()
Derek Allard2067d1a2008-11-13 22:59:24 +0000311 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000312 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200313 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000314 {
315 return TRUE;
316 }
317
Andrey Andreev3c5ec852013-09-13 15:01:08 +0300318 if ($this->conn_id->rollback())
319 {
320 $this->conn_id->autocommit(TRUE);
321 return TRUE;
322 }
323
324 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000325 }
326
327 // --------------------------------------------------------------------
328
329 /**
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200330 * Platform-dependant string escape
Derek Allard2067d1a2008-11-13 22:59:24 +0000331 *
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200332 * @param string
Derek Allard2067d1a2008-11-13 22:59:24 +0000333 * @return string
334 */
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200335 protected function _escape_str($str)
Derek Allard2067d1a2008-11-13 22:59:24 +0000336 {
Andrey Andreev62fad282014-06-19 15:25:40 +0300337 return $this->conn_id->real_escape_string($str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000338 }
Barry Mienydd671972010-10-04 16:33:58 +0200339
Derek Allard2067d1a2008-11-13 22:59:24 +0000340 // --------------------------------------------------------------------
341
342 /**
343 * Affected Rows
344 *
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200345 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000346 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200347 public function affected_rows()
Derek Allard2067d1a2008-11-13 22:59:24 +0000348 {
Andrey Andreev992f1752012-03-19 16:58:43 +0200349 return $this->conn_id->affected_rows;
Derek Allard2067d1a2008-11-13 22:59:24 +0000350 }
Barry Mienydd671972010-10-04 16:33:58 +0200351
Derek Allard2067d1a2008-11-13 22:59:24 +0000352 // --------------------------------------------------------------------
353
354 /**
355 * Insert ID
356 *
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200357 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000358 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200359 public function insert_id()
Derek Allard2067d1a2008-11-13 22:59:24 +0000360 {
Andrey Andreev992f1752012-03-19 16:58:43 +0200361 return $this->conn_id->insert_id;
Derek Allard2067d1a2008-11-13 22:59:24 +0000362 }
363
364 // --------------------------------------------------------------------
365
366 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000367 * List table query
368 *
369 * Generates a platform-specific query string so that the table names can be fetched
370 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200371 * @param bool $prefix_limit
Derek Allard2067d1a2008-11-13 22:59:24 +0000372 * @return string
373 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200374 protected function _list_tables($prefix_limit = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000375 {
Andrey Andreev473130a2012-06-24 02:51:18 +0300376 $sql = 'SHOW TABLES FROM '.$this->escape_identifiers($this->database);
Barry Mienydd671972010-10-04 16:33:58 +0200377
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100378 if ($prefix_limit !== FALSE && $this->dbprefix !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000379 {
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200380 return $sql." LIKE '".$this->escape_like_str($this->dbprefix)."%'";
Derek Allard2067d1a2008-11-13 22:59:24 +0000381 }
Barry Mienydd671972010-10-04 16:33:58 +0200382
Derek Allard2067d1a2008-11-13 22:59:24 +0000383 return $sql;
384 }
385
386 // --------------------------------------------------------------------
387
388 /**
389 * Show column query
390 *
391 * Generates a platform-specific query string so that the column names can be fetched
392 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200393 * @param string $table
Derek Allard2067d1a2008-11-13 22:59:24 +0000394 * @return string
395 */
Andrey Andreev1ff49e02012-01-27 11:30:41 +0200396 protected function _list_columns($table = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000397 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200398 return 'SHOW COLUMNS FROM '.$this->protect_identifiers($table, TRUE, NULL, FALSE);
Derek Allard2067d1a2008-11-13 22:59:24 +0000399 }
400
401 // --------------------------------------------------------------------
402
403 /**
Andrey Andreev3722e502012-03-03 15:04:38 +0200404 * Returns an object with field data
Derek Allard2067d1a2008-11-13 22:59:24 +0000405 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200406 * @param string $table
Andrey Andreev10ecc842012-11-16 01:06:20 +0200407 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000408 */
Andrey Andreev5350f052015-01-12 12:33:37 +0200409 public function field_data($table)
Derek Allard2067d1a2008-11-13 22:59:24 +0000410 {
Andrey Andreev10ecc842012-11-16 01:06:20 +0200411 if (($query = $this->query('SHOW COLUMNS FROM '.$this->protect_identifiers($table, TRUE, NULL, FALSE))) === FALSE)
412 {
413 return FALSE;
414 }
Andrey Andreev3722e502012-03-03 15:04:38 +0200415 $query = $query->result_object();
416
417 $retval = array();
418 for ($i = 0, $c = count($query); $i < $c; $i++)
419 {
Andrey Andreev3722e502012-03-03 15:04:38 +0200420 $retval[$i] = new stdClass();
421 $retval[$i]->name = $query[$i]->Field;
Andrey Andreev10ecc842012-11-16 01:06:20 +0200422
423 sscanf($query[$i]->Type, '%[a-z](%d)',
424 $retval[$i]->type,
425 $retval[$i]->max_length
426 );
427
Andrey Andreev3722e502012-03-03 15:04:38 +0200428 $retval[$i]->default = $query[$i]->Default;
Andrey Andreev3722e502012-03-03 15:04:38 +0200429 $retval[$i]->primary_key = (int) ($query[$i]->Key === 'PRI');
430 }
431
432 return $retval;
Derek Allard2067d1a2008-11-13 22:59:24 +0000433 }
434
435 // --------------------------------------------------------------------
436
437 /**
Andrey Andreev4be5de12012-03-02 15:45:41 +0200438 * Error
Derek Allard2067d1a2008-11-13 22:59:24 +0000439 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200440 * Returns an array containing code and message of the last
441 * database error that has occured.
Derek Allard2067d1a2008-11-13 22:59:24 +0000442 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200443 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000444 */
Andrey Andreev4be5de12012-03-02 15:45:41 +0200445 public function error()
Derek Allard2067d1a2008-11-13 22:59:24 +0000446 {
Andrey Andreevdbad54e2012-10-05 21:53:32 +0300447 if ( ! empty($this->conn_id->connect_errno))
448 {
449 return array(
450 'code' => $this->conn_id->connect_errno,
451 'message' => is_php('5.2.9') ? $this->conn_id->connect_error : mysqli_connect_error()
452 );
453 }
454
Andrey Andreev992f1752012-03-19 16:58:43 +0200455 return array('code' => $this->conn_id->errno, 'message' => $this->conn_id->error);
Derek Allard2067d1a2008-11-13 22:59:24 +0000456 }
Barry Mienydd671972010-10-04 16:33:58 +0200457
Derek Allard2067d1a2008-11-13 22:59:24 +0000458 // --------------------------------------------------------------------
459
460 /**
Andrey Andreev7eaa14f2012-10-09 11:34:01 +0300461 * FROM tables
462 *
463 * Groups tables in FROM clauses if needed, so there is no confusion
464 * about operator precedence.
465 *
466 * @return string
467 */
468 protected function _from_tables()
469 {
Andrey Andreevfce9abe2012-10-09 11:37:00 +0300470 if ( ! empty($this->qb_join) && count($this->qb_from) > 1)
Andrey Andreev7eaa14f2012-10-09 11:34:01 +0300471 {
472 return '('.implode(', ', $this->qb_from).')';
473 }
474
475 return implode(', ', $this->qb_from);
476 }
477
478 // --------------------------------------------------------------------
479
480 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000481 * Close DB Connection
482 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000483 * @return void
484 */
Andrey Andreev79922c02012-05-23 12:27:17 +0300485 protected function _close()
Derek Allard2067d1a2008-11-13 22:59:24 +0000486 {
Andrey Andreev992f1752012-03-19 16:58:43 +0200487 $this->conn_id->close();
Derek Allard2067d1a2008-11-13 22:59:24 +0000488 }
489
Derek Allard2067d1a2008-11-13 22:59:24 +0000490}