blob: 0ea679432b127481c637c65fd5735a8a715974fe [file] [log] [blame]
Marco Monteiro89726cd2015-09-01 09:50:21 +01001<?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 Andreev4c202602012-03-06 20:34:52 +02008 *
Andrey Andreevfe9309d2015-01-09 17:48:58 +02009 * Copyright (c) 2014 - 2015, British Columbia Institute of Technology
Andrey Andreev4c202602012-03-06 20:34:52 +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.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 * Database Driver Class
42 *
43 * This is the platform-independent base DB implementation class.
44 * This class will not be called directly. Rather, the adapter
45 * class for the specific database will extend and instantiate it.
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 */
Timothy Warren7eeda532012-03-19 16:01:55 -040053abstract class CI_DB_driver {
Derek Allard2067d1a2008-11-13 22:59:24 +000054
Andrey Andreevae85eb42012-11-02 01:42:31 +020055 /**
56 * Data Source Name / Connect string
57 *
58 * @var string
59 */
Andrey Andreev738f5342012-03-06 20:43:40 +020060 public $dsn;
Andrey Andreevae85eb42012-11-02 01:42:31 +020061
62 /**
63 * Username
64 *
65 * @var string
66 */
Andrey Andreevd1add432012-03-06 20:26:01 +020067 public $username;
Andrey Andreevae85eb42012-11-02 01:42:31 +020068
69 /**
70 * Password
71 *
72 * @var string
73 */
Andrey Andreevd1add432012-03-06 20:26:01 +020074 public $password;
Andrey Andreevae85eb42012-11-02 01:42:31 +020075
76 /**
77 * Hostname
78 *
79 * @var string
80 */
Andrey Andreevd1add432012-03-06 20:26:01 +020081 public $hostname;
Andrey Andreevae85eb42012-11-02 01:42:31 +020082
83 /**
84 * Database name
85 *
86 * @var string
87 */
Andrey Andreevd1add432012-03-06 20:26:01 +020088 public $database;
Andrey Andreevae85eb42012-11-02 01:42:31 +020089
90 /**
91 * Database driver
92 *
93 * @var string
94 */
Andrey Andreev75546112012-07-05 11:01:29 +030095 public $dbdriver = 'mysqli';
Andrey Andreevae85eb42012-11-02 01:42:31 +020096
97 /**
98 * Sub-driver
99 *
100 * @used-by CI_DB_pdo_driver
101 * @var string
102 */
Andrey Andreevfbba54e2012-06-23 20:26:31 +0300103 public $subdriver;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200104
105 /**
106 * Table prefix
107 *
108 * @var string
109 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200110 public $dbprefix = '';
Andrey Andreevae85eb42012-11-02 01:42:31 +0200111
112 /**
113 * Character set
114 *
115 * @var string
116 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200117 public $char_set = 'utf8';
Andrey Andreevae85eb42012-11-02 01:42:31 +0200118
119 /**
120 * Collation
121 *
122 * @var string
123 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200124 public $dbcollat = 'utf8_general_ci';
Andrey Andreevae85eb42012-11-02 01:42:31 +0200125
126 /**
Andrey Andreevae85eb42012-11-02 01:42:31 +0200127 * Encryption flag/data
128 *
129 * @var mixed
130 */
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300131 public $encrypt = FALSE;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200132
133 /**
134 * Swap Prefix
135 *
136 * @var string
137 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200138 public $swap_pre = '';
Andrey Andreevae85eb42012-11-02 01:42:31 +0200139
140 /**
141 * Database port
142 *
143 * @var int
144 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200145 public $port = '';
Andrey Andreevae85eb42012-11-02 01:42:31 +0200146
147 /**
148 * Persistent connection flag
149 *
150 * @var bool
151 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200152 public $pconnect = FALSE;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200153
154 /**
155 * Connection ID
156 *
157 * @var object|resource
158 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200159 public $conn_id = FALSE;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200160
161 /**
162 * Result ID
163 *
164 * @var object|resource
165 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200166 public $result_id = FALSE;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200167
168 /**
169 * Debug flag
170 *
171 * Whether to display error messages.
172 *
173 * @var bool
174 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200175 public $db_debug = FALSE;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200176
177 /**
178 * Benchmark time
179 *
180 * @var int
181 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200182 public $benchmark = 0;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200183
184 /**
185 * Executed queries count
186 *
187 * @var int
188 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200189 public $query_count = 0;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200190
191 /**
192 * Bind marker
193 *
194 * Character used to identify values in a prepared statement.
195 *
196 * @var string
197 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200198 public $bind_marker = '?';
Andrey Andreevae85eb42012-11-02 01:42:31 +0200199
200 /**
201 * Save queries flag
202 *
203 * Whether to keep an in-memory history of queries for debugging purposes.
204 *
205 * @var bool
206 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200207 public $save_queries = TRUE;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200208
209 /**
210 * Queries list
211 *
212 * @see CI_DB_driver::$save_queries
213 * @var string[]
214 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200215 public $queries = array();
Andrey Andreevae85eb42012-11-02 01:42:31 +0200216
217 /**
218 * Query times
219 *
220 * A list of times that queries took to execute.
221 *
222 * @var array
223 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200224 public $query_times = array();
Andrey Andreevae85eb42012-11-02 01:42:31 +0200225
226 /**
227 * Data cache
228 *
229 * An internal generic value cache.
230 *
231 * @var array
232 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200233 public $data_cache = array();
Derek Allard2067d1a2008-11-13 22:59:24 +0000234
Andrey Andreevae85eb42012-11-02 01:42:31 +0200235 /**
236 * Transaction enabled flag
237 *
238 * @var bool
239 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200240 public $trans_enabled = TRUE;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200241
242 /**
243 * Strict transaction mode flag
244 *
245 * @var bool
246 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200247 public $trans_strict = TRUE;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200248
249 /**
250 * Transaction depth level
251 *
252 * @var int
253 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200254 protected $_trans_depth = 0;
Derek Allard2067d1a2008-11-13 22:59:24 +0000255
Andrey Andreevae85eb42012-11-02 01:42:31 +0200256 /**
257 * Transaction status flag
258 *
259 * Used with transactions to determine if a rollback should occur.
260 *
261 * @var bool
262 */
263 protected $_trans_status = TRUE;
264
265 /**
Ahmedul Haque Abida2129772014-05-01 01:57:53 +0600266 * Transaction failure flag
267 *
268 * Used with transactions to determine if a transaction has failed.
269 *
270 * @var bool
271 */
272 protected $_trans_failure = FALSE;
273
274 /**
Andrey Andreevae85eb42012-11-02 01:42:31 +0200275 * Cache On flag
276 *
277 * @var bool
278 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200279 public $cache_on = FALSE;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200280
281 /**
282 * Cache directory path
283 *
284 * @var bool
285 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200286 public $cachedir = '';
Andrey Andreevae85eb42012-11-02 01:42:31 +0200287
288 /**
289 * Cache auto-delete flag
290 *
291 * @var bool
292 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200293 public $cache_autodel = FALSE;
Barry Mienydd671972010-10-04 16:33:58 +0200294
Andrey Andreevae85eb42012-11-02 01:42:31 +0200295 /**
296 * DB Cache object
297 *
298 * @see CI_DB_cache
299 * @var object
300 */
301 public $CACHE;
302
303 /**
304 * Protect identifiers flag
305 *
306 * @var bool
307 */
Jamie Rumbelowbcee50f2012-03-08 13:00:15 +0000308 protected $_protect_identifiers = TRUE;
Andrey Andreevd1add432012-03-06 20:26:01 +0200309
Andrey Andreevae85eb42012-11-02 01:42:31 +0200310 /**
311 * List of reserved identifiers
312 *
313 * Identifiers that must NOT be escaped.
314 *
315 * @var string[]
316 */
317 protected $_reserved_identifiers = array('*');
318
319 /**
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200320 * Identifier escape character
321 *
322 * @var string
323 */
324 protected $_escape_char = '"';
325
326 /**
Andrey Andreevae85eb42012-11-02 01:42:31 +0200327 * ESCAPE statement string
328 *
329 * @var string
330 */
Andrey Andreev2ea33c32012-10-04 12:37:51 +0300331 protected $_like_escape_str = " ESCAPE '%s' ";
Andrey Andreevae85eb42012-11-02 01:42:31 +0200332
333 /**
334 * ESCAPE character
335 *
336 * @var string
337 */
Andrey Andreev2ea33c32012-10-04 12:37:51 +0300338 protected $_like_escape_chr = '!';
339
Andrey Andreev75546112012-07-05 11:01:29 +0300340 /**
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200341 * ORDER BY random keyword
342 *
Andrey Andreev98e46cf2012-11-13 03:01:42 +0200343 * @var array
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200344 */
Andrey Andreev98e46cf2012-11-13 03:01:42 +0200345 protected $_random_keyword = array('RAND()', 'RAND(%d)');
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200346
347 /**
Andrey Andreevae85eb42012-11-02 01:42:31 +0200348 * COUNT string
349 *
350 * @used-by CI_DB_driver::count_all()
351 * @used-by CI_DB_query_builder::count_all_results()
352 *
353 * @var string
Andrey Andreev77a5d942012-07-05 15:42:14 +0300354 */
355 protected $_count_string = 'SELECT COUNT(*) AS ';
356
Andrey Andreevae85eb42012-11-02 01:42:31 +0200357 // --------------------------------------------------------------------
358
Andrey Andreev77a5d942012-07-05 15:42:14 +0300359 /**
Andrey Andreevae85eb42012-11-02 01:42:31 +0200360 * Class constructor
Andrey Andreev75546112012-07-05 11:01:29 +0300361 *
Andrey Andreevae85eb42012-11-02 01:42:31 +0200362 * @param array $params
Andrey Andreev75546112012-07-05 11:01:29 +0300363 * @return void
364 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500365 public function __construct($params)
Derek Allard2067d1a2008-11-13 22:59:24 +0000366 {
367 if (is_array($params))
368 {
369 foreach ($params as $key => $val)
370 {
371 $this->$key = $val;
372 }
373 }
374
Andrey Andreev90726b82015-01-20 12:39:22 +0200375 log_message('info', 'Database Driver Class Initialized');
Derek Allard2067d1a2008-11-13 22:59:24 +0000376 }
Barry Mienydd671972010-10-04 16:33:58 +0200377
Gints Murans89f77ee2012-05-23 00:23:50 +0300378 // --------------------------------------------------------------------
Root36237d82012-05-21 18:30:00 -0400379
Derek Allard2067d1a2008-11-13 22:59:24 +0000380 /**
381 * Initialize Database Settings
382 *
Andrey Andreev82e8ac12012-02-22 19:35:34 +0200383 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200384 */
Andrey Andreev82e8ac12012-02-22 19:35:34 +0200385 public function initialize()
Derek Allard2067d1a2008-11-13 22:59:24 +0000386 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200387 /* If an established connection is available, then there's
388 * no need to connect and select the database.
389 *
390 * Depending on the database driver, conn_id can be either
391 * boolean TRUE, a resource or an object.
392 */
393 if ($this->conn_id)
Derek Allard2067d1a2008-11-13 22:59:24 +0000394 {
395 return TRUE;
396 }
Barry Mienydd671972010-10-04 16:33:58 +0200397
Derek Allard2067d1a2008-11-13 22:59:24 +0000398 // ----------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200399
Derek Allard2067d1a2008-11-13 22:59:24 +0000400 // Connect to the database and set the connection ID
Andrey Andreev7e963512014-02-27 15:43:24 +0200401 $this->conn_id = $this->db_connect($this->pconnect);
Derek Allard2067d1a2008-11-13 22:59:24 +0000402
Andrey Andreev82e8ac12012-02-22 19:35:34 +0200403 // No connection resource? Check if there is a failover else throw an error
Derek Allard2067d1a2008-11-13 22:59:24 +0000404 if ( ! $this->conn_id)
405 {
Felix Balfoort5d581b62011-11-29 15:53:01 +0100406 // Check if there is a failover set
407 if ( ! empty($this->failover) && is_array($this->failover))
Derek Allard2067d1a2008-11-13 22:59:24 +0000408 {
Felix Balfoort5d581b62011-11-29 15:53:01 +0100409 // Go over all the failovers
410 foreach ($this->failover as $failover)
411 {
412 // Replace the current settings with those of the failover
413 foreach ($failover as $key => $val)
414 {
415 $this->$key = $val;
416 }
417
418 // Try to connect
Andrey Andreev7e963512014-02-27 15:43:24 +0200419 $this->conn_id = $this->db_connect($this->pconnect);
Felix Balfoort5d581b62011-11-29 15:53:01 +0100420
421 // If a connection is made break the foreach loop
422 if ($this->conn_id)
423 {
424 break;
425 }
426 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000427 }
Felix Balfoort5d581b62011-11-29 15:53:01 +0100428
429 // We still don't have a connection?
430 if ( ! $this->conn_id)
431 {
432 log_message('error', 'Unable to connect to the database');
433
434 if ($this->db_debug)
435 {
436 $this->display_error('db_unable_to_connect');
437 }
Andrey Andreev7e963512014-02-27 15:43:24 +0200438
Felix Balfoort5d581b62011-11-29 15:53:01 +0100439 return FALSE;
440 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000441 }
442
Andrey Andreev82e8ac12012-02-22 19:35:34 +0200443 // Now we set the character set and that's all
Andrey Andreev95bd1d12012-03-12 16:22:28 +0200444 return $this->db_set_charset($this->char_set);
Derek Allard2067d1a2008-11-13 22:59:24 +0000445 }
Barry Mienydd671972010-10-04 16:33:58 +0200446
Derek Allard2067d1a2008-11-13 22:59:24 +0000447 // --------------------------------------------------------------------
448
449 /**
Andrey Andreev0d3fde22015-01-05 16:56:41 +0200450 * DB connect
451 *
452 * This is just a dummy method that all drivers will override.
453 *
Andrey Andreev10fb7d12015-08-03 10:05:29 +0300454 * @return mixed
Andrey Andreev0d3fde22015-01-05 16:56:41 +0200455 */
456 public function db_connect()
457 {
458 return TRUE;
459 }
460
461 // --------------------------------------------------------------------
462
463 /**
Andrey Andreev2e171022014-02-25 15:21:41 +0200464 * Persistent database connection
465 *
Andrey Andreev0d3fde22015-01-05 16:56:41 +0200466 * @return mixed
Andrey Andreev2e171022014-02-25 15:21:41 +0200467 */
468 public function db_pconnect()
469 {
470 return $this->db_connect(TRUE);
471 }
472
473 // --------------------------------------------------------------------
474
475 /**
Andrey Andreev2cae1932012-03-23 16:08:41 +0200476 * Reconnect
477 *
478 * Keep / reestablish the db connection if no queries have been
479 * sent for a length of time exceeding the server's idle timeout.
480 *
481 * This is just a dummy method to allow drivers without such
482 * functionality to not declare it, while others will override it.
483 *
Andrey Andreev10fb7d12015-08-03 10:05:29 +0300484 * @return void
Andrey Andreev2cae1932012-03-23 16:08:41 +0200485 */
486 public function reconnect()
487 {
488 }
489
490 // --------------------------------------------------------------------
491
492 /**
Andrey Andreevbee66442012-03-28 15:28:19 +0300493 * Select database
494 *
495 * This is just a dummy method to allow drivers without such
496 * functionality to not declare it, while others will override it.
497 *
Andrey Andreev10fb7d12015-08-03 10:05:29 +0300498 * @return bool
Andrey Andreevbee66442012-03-28 15:28:19 +0300499 */
500 public function db_select()
501 {
502 return TRUE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000503 }
504
505 // --------------------------------------------------------------------
506
507 /**
508 * Set client character set
509 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000510 * @param string
Andrey Andreev063f5962012-02-27 12:20:52 +0200511 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +0000512 */
Andrey Andreev95bd1d12012-03-12 16:22:28 +0200513 public function db_set_charset($charset)
Derek Allard2067d1a2008-11-13 22:59:24 +0000514 {
Andrey Andreev95bd1d12012-03-12 16:22:28 +0200515 if (method_exists($this, '_db_set_charset') && ! $this->_db_set_charset($charset))
Derek Allard2067d1a2008-11-13 22:59:24 +0000516 {
Andrey Andreev063f5962012-02-27 12:20:52 +0200517 log_message('error', 'Unable to set database connection charset: '.$charset);
Barry Mienydd671972010-10-04 16:33:58 +0200518
Derek Allard2067d1a2008-11-13 22:59:24 +0000519 if ($this->db_debug)
520 {
Andrey Andreev063f5962012-02-27 12:20:52 +0200521 $this->display_error('db_unable_to_set_charset', $charset);
Derek Allard2067d1a2008-11-13 22:59:24 +0000522 }
Barry Mienydd671972010-10-04 16:33:58 +0200523
Derek Allard2067d1a2008-11-13 22:59:24 +0000524 return FALSE;
525 }
Barry Mienydd671972010-10-04 16:33:58 +0200526
Derek Allard2067d1a2008-11-13 22:59:24 +0000527 return TRUE;
528 }
Barry Mienydd671972010-10-04 16:33:58 +0200529
Derek Allard2067d1a2008-11-13 22:59:24 +0000530 // --------------------------------------------------------------------
531
532 /**
533 * The name of the platform in use (mysql, mssql, etc...)
534 *
Barry Mienydd671972010-10-04 16:33:58 +0200535 * @return string
536 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500537 public function platform()
Derek Allard2067d1a2008-11-13 22:59:24 +0000538 {
539 return $this->dbdriver;
540 }
541
542 // --------------------------------------------------------------------
543
544 /**
Andrey Andreev08856b82012-03-03 03:19:28 +0200545 * Database version number
Derek Allard2067d1a2008-11-13 22:59:24 +0000546 *
Andrey Andreev08856b82012-03-03 03:19:28 +0200547 * Returns a string containing the version of the database being used.
548 * Most drivers will override this method.
549 *
Barry Mienydd671972010-10-04 16:33:58 +0200550 * @return string
551 */
Andrey Andreev08856b82012-03-03 03:19:28 +0200552 public function version()
Derek Allard2067d1a2008-11-13 22:59:24 +0000553 {
Andrey Andreev08856b82012-03-03 03:19:28 +0200554 if (isset($this->data_cache['version']))
555 {
556 return $this->data_cache['version'];
557 }
558
Derek Allard2067d1a2008-11-13 22:59:24 +0000559 if (FALSE === ($sql = $this->_version()))
560 {
Andrey Andreev08856b82012-03-03 03:19:28 +0200561 return ($this->db_debug) ? $this->display_error('db_unsupported_function') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000562 }
Derek Allard3683f772009-12-16 17:32:33 +0000563
Andrey Andreev7e963512014-02-27 15:43:24 +0200564 $query = $this->query($sql)->row();
Andrey Andreev08856b82012-03-03 03:19:28 +0200565 return $this->data_cache['version'] = $query->ver;
566 }
Derek Allard3683f772009-12-16 17:32:33 +0000567
Andrey Andreev08856b82012-03-03 03:19:28 +0200568 // --------------------------------------------------------------------
569
570 /**
571 * Version number query string
572 *
573 * @return string
574 */
575 protected function _version()
576 {
577 return 'SELECT VERSION() AS ver';
Derek Allard2067d1a2008-11-13 22:59:24 +0000578 }
Barry Mienydd671972010-10-04 16:33:58 +0200579
Derek Allard2067d1a2008-11-13 22:59:24 +0000580 // --------------------------------------------------------------------
581
582 /**
583 * Execute the query
584 *
585 * Accepts an SQL string as input and returns a result object upon
Andrey Andreev4c202602012-03-06 20:34:52 +0200586 * successful execution of a "read" type query. Returns boolean TRUE
Derek Allard2067d1a2008-11-13 22:59:24 +0000587 * upon successful execution of a "write" type query. Returns boolean
588 * FALSE upon failure, and if the $db_debug variable is set to TRUE
589 * will raise an error.
590 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +0300591 * @param string $sql
592 * @param array $binds = FALSE An array of binding data
593 * @param bool $return_object = NULL
Barry Mienydd671972010-10-04 16:33:58 +0200594 * @return mixed
595 */
Andrey Andreevb66664b2012-06-27 14:22:10 +0300596 public function query($sql, $binds = FALSE, $return_object = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000597 {
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100598 if ($sql === '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000599 {
Niklas Nilssond2018ee2011-08-30 13:39:42 +0200600 log_message('error', 'Invalid query: '.$sql);
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200601 return ($this->db_debug) ? $this->display_error('db_invalid_query') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000602 }
Andrey Andreevb66664b2012-06-27 14:22:10 +0300603 elseif ( ! is_bool($return_object))
604 {
605 $return_object = ! $this->is_write_type($sql);
606 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000607
608 // Verify table prefix and replace if necessary
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100609 if ($this->dbprefix !== '' && $this->swap_pre !== '' && $this->dbprefix !== $this->swap_pre)
Derek Jonese7792202010-03-02 17:24:46 -0600610 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200611 $sql = preg_replace('/(\W)'.$this->swap_pre.'(\S+?)/', '\\1'.$this->dbprefix.'\\2', $sql);
Derek Allard2067d1a2008-11-13 22:59:24 +0000612 }
Derek Jonese7792202010-03-02 17:24:46 -0600613
Ryan Dialef7474c2012-03-01 16:11:36 -0500614 // Compile binds if needed
615 if ($binds !== FALSE)
616 {
617 $sql = $this->compile_binds($sql, $binds);
618 }
619
Andrey Andreev4c202602012-03-06 20:34:52 +0200620 // Is query caching enabled? If the query is a "read type"
Derek Allard2067d1a2008-11-13 22:59:24 +0000621 // we will load the caching class and return the previously
622 // cached query if it exists
Andrey Andreevb66664b2012-06-27 14:22:10 +0300623 if ($this->cache_on === TRUE && $return_object === TRUE && $this->_cache_init())
Derek Allard2067d1a2008-11-13 22:59:24 +0000624 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200625 $this->load_rdriver();
626 if (FALSE !== ($cache = $this->CACHE->read($sql)))
Derek Allard2067d1a2008-11-13 22:59:24 +0000627 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200628 return $cache;
Derek Allard2067d1a2008-11-13 22:59:24 +0000629 }
630 }
Barry Mienydd671972010-10-04 16:33:58 +0200631
Andrey Andreevb66664b2012-06-27 14:22:10 +0300632 // Save the query for debugging
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100633 if ($this->save_queries === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000634 {
635 $this->queries[] = $sql;
636 }
Barry Mienydd671972010-10-04 16:33:58 +0200637
Derek Allard2067d1a2008-11-13 22:59:24 +0000638 // Start the Query Timer
dixyab3cab52012-04-21 00:58:00 +0200639 $time_start = microtime(TRUE);
Barry Mienydd671972010-10-04 16:33:58 +0200640
Derek Allard2067d1a2008-11-13 22:59:24 +0000641 // Run the Query
642 if (FALSE === ($this->result_id = $this->simple_query($sql)))
643 {
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100644 if ($this->save_queries === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000645 {
646 $this->query_times[] = 0;
647 }
Barry Mienydd671972010-10-04 16:33:58 +0200648
Derek Allard2067d1a2008-11-13 22:59:24 +0000649 // This will trigger a rollback if transactions are being used
Andrey Andreev4e5ff1f2015-08-05 14:32:03 +0300650 if ($this->_trans_depth !== 0)
651 {
652 $this->_trans_status = FALSE;
653 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000654
Andrey Andreev4be5de12012-03-02 15:45:41 +0200655 // Grab the error now, as we might run some additional queries before displaying the error
656 $error = $this->error();
Niklas Nilssond2018ee2011-08-30 13:39:42 +0200657
658 // Log errors
Andrey Andreevb66664b2012-06-27 14:22:10 +0300659 log_message('error', 'Query error: '.$error['message'].' - Invalid query: '.$sql);
Niklas Nilssond2018ee2011-08-30 13:39:42 +0200660
Derek Allard2067d1a2008-11-13 22:59:24 +0000661 if ($this->db_debug)
662 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000663 // We call this function in order to roll-back queries
Andrey Andreev4be5de12012-03-02 15:45:41 +0200664 // if transactions are enabled. If we don't call this here
Barry Mienydd671972010-10-04 16:33:58 +0200665 // the error message will trigger an exit, causing the
Derek Allard2067d1a2008-11-13 22:59:24 +0000666 // transactions to remain in limbo.
Andrey Andreev6c854422013-10-21 13:58:15 +0300667 if ($this->_trans_depth !== 0)
668 {
669 do
670 {
Andrey Andreeva7d4aba2015-10-19 14:39:44 +0300671 $trans_depth = $this->_trans_depth;
Andrey Andreev6c854422013-10-21 13:58:15 +0300672 $this->trans_complete();
Andrey Andreeva7d4aba2015-10-19 14:39:44 +0300673 if ($trans_depth === $this->_trans_depth)
674 {
675 log_message('error', 'Database: Failure during an automated transaction commit/rollback!');
676 break;
677 }
Andrey Andreev6c854422013-10-21 13:58:15 +0300678 }
679 while ($this->_trans_depth !== 0);
680 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000681
Niklas Nilssond2018ee2011-08-30 13:39:42 +0200682 // Display errors
Andrey Andreev27984582012-03-03 04:43:10 +0200683 return $this->display_error(array('Error Number: '.$error['code'], $error['message'], $sql));
Derek Allard2067d1a2008-11-13 22:59:24 +0000684 }
Barry Mienydd671972010-10-04 16:33:58 +0200685
Derek Allard2067d1a2008-11-13 22:59:24 +0000686 return FALSE;
687 }
Barry Mienydd671972010-10-04 16:33:58 +0200688
Derek Allard2067d1a2008-11-13 22:59:24 +0000689 // Stop and aggregate the query time results
dixyab3cab52012-04-21 00:58:00 +0200690 $time_end = microtime(TRUE);
691 $this->benchmark += $time_end - $time_start;
Derek Allard2067d1a2008-11-13 22:59:24 +0000692
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100693 if ($this->save_queries === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000694 {
dixyab3cab52012-04-21 00:58:00 +0200695 $this->query_times[] = $time_end - $time_start;
Derek Allard2067d1a2008-11-13 22:59:24 +0000696 }
Barry Mienydd671972010-10-04 16:33:58 +0200697
Derek Allard2067d1a2008-11-13 22:59:24 +0000698 // Increment the query counter
699 $this->query_count++;
Barry Mienydd671972010-10-04 16:33:58 +0200700
Andrey Andreevb66664b2012-06-27 14:22:10 +0300701 // Will we have a result object instantiated? If not - we'll simply return TRUE
702 if ($return_object !== TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000703 {
Andrey Andreevb66664b2012-06-27 14:22:10 +0300704 // If caching is enabled we'll auto-cleanup any existing files related to this particular URI
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100705 if ($this->cache_on === TRUE && $this->cache_autodel === TRUE && $this->_cache_init())
Derek Allard2067d1a2008-11-13 22:59:24 +0000706 {
707 $this->CACHE->delete();
708 }
Barry Mienydd671972010-10-04 16:33:58 +0200709
Derek Allard2067d1a2008-11-13 22:59:24 +0000710 return TRUE;
711 }
Barry Mienydd671972010-10-04 16:33:58 +0200712
Barry Mienydd671972010-10-04 16:33:58 +0200713 // Load and instantiate the result driver
Andrey Andreev57bdeb62012-03-05 15:59:16 +0200714 $driver = $this->load_rdriver();
715 $RES = new $driver($this);
Barry Mienydd671972010-10-04 16:33:58 +0200716
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200717 // Is query caching enabled? If so, we'll serialize the
Derek Allard2067d1a2008-11-13 22:59:24 +0000718 // result object and save it to a cache file.
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100719 if ($this->cache_on === TRUE && $this->_cache_init())
Derek Allard2067d1a2008-11-13 22:59:24 +0000720 {
721 // We'll create a new instance of the result object
722 // only without the platform specific driver since
723 // we can't use it with cached data (the query result
724 // resource ID won't be any good once we've cached the
725 // result object, so we'll have to compile the data
726 // and save it)
Andrey Andreev83b2b1c2012-11-13 10:58:38 +0200727 $CR = new CI_DB_result($this);
Derek Allard2067d1a2008-11-13 22:59:24 +0000728 $CR->result_object = $RES->result_object();
729 $CR->result_array = $RES->result_array();
Andrey Andreev24abcb92012-01-05 20:40:15 +0200730 $CR->num_rows = $RES->num_rows();
Barry Mienydd671972010-10-04 16:33:58 +0200731
Derek Allard2067d1a2008-11-13 22:59:24 +0000732 // Reset these since cached objects can not utilize resource IDs.
733 $CR->conn_id = NULL;
734 $CR->result_id = NULL;
735
736 $this->CACHE->write($sql, $CR);
737 }
Barry Mienydd671972010-10-04 16:33:58 +0200738
Derek Allard2067d1a2008-11-13 22:59:24 +0000739 return $RES;
740 }
741
742 // --------------------------------------------------------------------
743
744 /**
745 * Load the result drivers
746 *
Barry Mienydd671972010-10-04 16:33:58 +0200747 * @return string the name of the result class
748 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500749 public function load_rdriver()
Derek Allard2067d1a2008-11-13 22:59:24 +0000750 {
751 $driver = 'CI_DB_'.$this->dbdriver.'_result';
752
vlakofffadb8222013-05-12 10:57:09 +0200753 if ( ! class_exists($driver, FALSE))
Derek Allard2067d1a2008-11-13 22:59:24 +0000754 {
Andrey Andreev7e963512014-02-27 15:43:24 +0200755 require_once(BASEPATH.'database/DB_result.php');
756 require_once(BASEPATH.'database/drivers/'.$this->dbdriver.'/'.$this->dbdriver.'_result.php');
Derek Allard2067d1a2008-11-13 22:59:24 +0000757 }
Barry Mienydd671972010-10-04 16:33:58 +0200758
Derek Allard2067d1a2008-11-13 22:59:24 +0000759 return $driver;
760 }
Barry Mienydd671972010-10-04 16:33:58 +0200761
Derek Allard2067d1a2008-11-13 22:59:24 +0000762 // --------------------------------------------------------------------
763
764 /**
765 * Simple Query
Andrey Andreev4c202602012-03-06 20:34:52 +0200766 * This is a simplified version of the query() function. Internally
Derek Allard2067d1a2008-11-13 22:59:24 +0000767 * we only use it when running transaction commands since they do
768 * not require all the features of the main query() function.
769 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000770 * @param string the sql query
Barry Mienydd671972010-10-04 16:33:58 +0200771 * @return mixed
772 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500773 public function simple_query($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000774 {
775 if ( ! $this->conn_id)
776 {
777 $this->initialize();
778 }
779
780 return $this->_execute($sql);
781 }
Barry Mienydd671972010-10-04 16:33:58 +0200782
Derek Allard2067d1a2008-11-13 22:59:24 +0000783 // --------------------------------------------------------------------
784
785 /**
786 * Disable Transactions
787 * This permits transactions to be disabled at run-time.
788 *
Barry Mienydd671972010-10-04 16:33:58 +0200789 * @return void
790 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500791 public function trans_off()
Derek Allard2067d1a2008-11-13 22:59:24 +0000792 {
793 $this->trans_enabled = FALSE;
794 }
795
796 // --------------------------------------------------------------------
797
798 /**
799 * Enable/disable Transaction Strict Mode
Andrey Andreevc08f27b2015-09-14 14:03:39 +0300800 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000801 * When strict mode is enabled, if you are running multiple groups of
Andrey Andreevc08f27b2015-09-14 14:03:39 +0300802 * transactions, if one group fails all subsequent groups will be
803 * rolled back.
804 *
805 * If strict mode is disabled, each group is treated autonomously,
806 * meaning a failure of one group will not affect any others
Derek Allard2067d1a2008-11-13 22:59:24 +0000807 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +0300808 * @param bool $mode = TRUE
Barry Mienydd671972010-10-04 16:33:58 +0200809 * @return void
810 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500811 public function trans_strict($mode = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000812 {
813 $this->trans_strict = is_bool($mode) ? $mode : TRUE;
814 }
Barry Mienydd671972010-10-04 16:33:58 +0200815
Derek Allard2067d1a2008-11-13 22:59:24 +0000816 // --------------------------------------------------------------------
817
818 /**
819 * Start Transaction
820 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +0300821 * @param bool $test_mode = FALSE
Andrey Andreeva7d4aba2015-10-19 14:39:44 +0300822 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200823 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500824 public function trans_start($test_mode = FALSE)
Barry Mienydd671972010-10-04 16:33:58 +0200825 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000826 if ( ! $this->trans_enabled)
827 {
Andrey Andreeva7d4aba2015-10-19 14:39:44 +0300828 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000829 }
830
Andrey Andreeva7d4aba2015-10-19 14:39:44 +0300831 return $this->trans_begin($test_mode);
Derek Allard2067d1a2008-11-13 22:59:24 +0000832 }
833
834 // --------------------------------------------------------------------
835
836 /**
837 * Complete Transaction
838 *
Barry Mienydd671972010-10-04 16:33:58 +0200839 * @return bool
840 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500841 public function trans_complete()
Derek Allard2067d1a2008-11-13 22:59:24 +0000842 {
843 if ( ! $this->trans_enabled)
844 {
845 return FALSE;
846 }
Barry Mienydd671972010-10-04 16:33:58 +0200847
Derek Allard2067d1a2008-11-13 22:59:24 +0000848 // The query() function will set this flag to FALSE in the event that a query failed
Katsumi Hondafa99dc62013-04-03 22:47:34 +0900849 if ($this->_trans_status === FALSE OR $this->_trans_failure === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000850 {
851 $this->trans_rollback();
Barry Mienydd671972010-10-04 16:33:58 +0200852
Derek Allard2067d1a2008-11-13 22:59:24 +0000853 // If we are NOT running in strict mode, we will reset
Andrey Andreevc08f27b2015-09-14 14:03:39 +0300854 // the _trans_status flag so that subsequent groups of
855 // transactions will be permitted.
Derek Allard2067d1a2008-11-13 22:59:24 +0000856 if ($this->trans_strict === FALSE)
857 {
858 $this->_trans_status = TRUE;
859 }
860
861 log_message('debug', 'DB Transaction Failure');
862 return FALSE;
863 }
Barry Mienydd671972010-10-04 16:33:58 +0200864
Andrey Andreeva7d4aba2015-10-19 14:39:44 +0300865 return $this->trans_commit();
Derek Allard2067d1a2008-11-13 22:59:24 +0000866 }
867
868 // --------------------------------------------------------------------
869
870 /**
871 * Lets you retrieve the transaction flag to determine if it has failed
872 *
Barry Mienydd671972010-10-04 16:33:58 +0200873 * @return bool
874 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500875 public function trans_status()
Derek Allard2067d1a2008-11-13 22:59:24 +0000876 {
877 return $this->_trans_status;
878 }
879
880 // --------------------------------------------------------------------
881
882 /**
Andrey Andreeva7d4aba2015-10-19 14:39:44 +0300883 * Begin Transaction
884 *
885 * @param bool $test_mode
886 * @return bool
887 */
888 public function trans_begin($test_mode = FALSE)
889 {
890 if ( ! $this->trans_enabled)
891 {
892 return FALSE;
893 }
894 // When transactions are nested we only begin/commit/rollback the outermost ones
895 elseif ($this->_trans_depth > 0)
896 {
897 $this->_trans_depth++;
898 return TRUE;
899 }
900
901 // Reset the transaction failure flag.
902 // If the $test_mode flag is set to TRUE transactions will be rolled back
903 // even if the queries produce a successful result.
904 $this->_trans_failure = ($test_mode === TRUE);
905
906 if ($this->_trans_begin())
907 {
908 $this->_trans_depth++;
909 return TRUE;
910 }
911
912 return FALSE;
913 }
914
915 // --------------------------------------------------------------------
916
917 /**
918 * Commit Transaction
919 *
920 * @return bool
921 */
922 public function trans_commit()
923 {
924 if ( ! $this->trans_enabled OR $this->_trans_depth === 0)
925 {
926 return FALSE;
927 }
928 // When transactions are nested we only begin/commit/rollback the outermost ones
929 elseif ($this->_trans_depth > 1 OR $this->_trans_commit())
930 {
931 $this->_trans_depth--;
932 return TRUE;
933 }
934
935 return FALSE;
936 }
937
938 // --------------------------------------------------------------------
939
940 /**
941 * Rollback Transaction
942 *
943 * @return bool
944 */
945 public function trans_rollback()
946 {
947 if ( ! $this->trans_enabled OR $this->_trans_depth === 0)
948 {
949 return FALSE;
950 }
951 // When transactions are nested we only begin/commit/rollback the outermost ones
952 elseif ($this->_trans_depth > 1 OR $this->_trans_rollback())
953 {
954 $this->_trans_depth--;
955 return TRUE;
956 }
957
958 return FALSE;
959 }
960
961 // --------------------------------------------------------------------
962
963 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000964 * Compile Bindings
965 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000966 * @param string the sql statement
967 * @param array an array of bind data
Barry Mienydd671972010-10-04 16:33:58 +0200968 * @return string
969 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500970 public function compile_binds($sql, $binds)
Derek Allard2067d1a2008-11-13 22:59:24 +0000971 {
Andrey Andreev10cbdf02012-06-13 13:32:30 +0300972 if (empty($binds) OR empty($this->bind_marker) OR strpos($sql, $this->bind_marker) === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000973 {
974 return $sql;
975 }
Andrey Andreev4e9538f2012-06-12 14:16:53 +0300976 elseif ( ! is_array($binds))
Derek Allard2067d1a2008-11-13 22:59:24 +0000977 {
Andrey Andreevaf915ce2012-06-13 19:03:06 +0300978 $binds = array($binds);
Andrey Andreev10cbdf02012-06-13 13:32:30 +0300979 $bind_count = 1;
Derek Allard2067d1a2008-11-13 22:59:24 +0000980 }
Andrey Andreev4e9538f2012-06-12 14:16:53 +0300981 else
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200982 {
Andrey Andreev4e9538f2012-06-12 14:16:53 +0300983 // Make sure we're using numeric keys
984 $binds = array_values($binds);
Andrey Andreev10cbdf02012-06-13 13:32:30 +0300985 $bind_count = count($binds);
Derek Allard2067d1a2008-11-13 22:59:24 +0000986 }
987
Andrey Andreevaf915ce2012-06-13 19:03:06 +0300988 // We'll need the marker length later
989 $ml = strlen($this->bind_marker);
990
Andrey Andreev10cbdf02012-06-13 13:32:30 +0300991 // Make sure not to replace a chunk inside a string that happens to match the bind marker
992 if ($c = preg_match_all("/'[^']*'/i", $sql, $matches))
Derek Allard2067d1a2008-11-13 22:59:24 +0000993 {
Andrey Andreeve4742582012-10-25 13:25:13 +0300994 $c = preg_match_all('/'.preg_quote($this->bind_marker, '/').'/i',
Andrey Andreev10cbdf02012-06-13 13:32:30 +0300995 str_replace($matches[0],
996 str_replace($this->bind_marker, str_repeat(' ', $ml), $matches[0]),
997 $sql, $c),
998 $matches, PREG_OFFSET_CAPTURE);
999
1000 // Bind values' count must match the count of markers in the query
1001 if ($bind_count !== $c)
1002 {
1003 return $sql;
1004 }
Andrey Andreev10cbdf02012-06-13 13:32:30 +03001005 }
Andrey Andreeve4742582012-10-25 13:25:13 +03001006 elseif (($c = preg_match_all('/'.preg_quote($this->bind_marker, '/').'/i', $sql, $matches, PREG_OFFSET_CAPTURE)) !== $bind_count)
Andrey Andreev10cbdf02012-06-13 13:32:30 +03001007 {
Andrey Andreevaf915ce2012-06-13 19:03:06 +03001008 return $sql;
Derek Allard2067d1a2008-11-13 22:59:24 +00001009 }
1010
Andrey Andreevaf915ce2012-06-13 19:03:06 +03001011 do
1012 {
1013 $c--;
clawoo4a4f5502014-10-20 15:28:08 +03001014 $escaped_value = $this->escape($binds[$c]);
1015 if (is_array($escaped_value))
1016 {
1017 $escaped_value = '('.implode(',', $escaped_value).')';
1018 }
1019 $sql = substr_replace($sql, $escaped_value, $matches[0][$c][1], $ml);
Andrey Andreevaf915ce2012-06-13 19:03:06 +03001020 }
1021 while ($c !== 0);
1022
Andrey Andreev4e9538f2012-06-12 14:16:53 +03001023 return $sql;
Derek Allard2067d1a2008-11-13 22:59:24 +00001024 }
Barry Mienydd671972010-10-04 16:33:58 +02001025
Derek Allard2067d1a2008-11-13 22:59:24 +00001026 // --------------------------------------------------------------------
1027
1028 /**
1029 * Determines if a query is a "write" type.
1030 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001031 * @param string An SQL query string
Andrey Andreev67f71a42012-03-01 16:18:42 +02001032 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +02001033 */
Andrey Andreev67f71a42012-03-01 16:18:42 +02001034 public function is_write_type($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +00001035 {
Andrey Andreevd98c4a32014-01-07 17:33:32 +02001036 return (bool) preg_match('/^\s*"?(SET|INSERT|UPDATE|DELETE|REPLACE|CREATE|DROP|TRUNCATE|LOAD|COPY|ALTER|RENAME|GRANT|REVOKE|LOCK|UNLOCK|REINDEX)\s/i', $sql);
Derek Allard2067d1a2008-11-13 22:59:24 +00001037 }
Barry Mienydd671972010-10-04 16:33:58 +02001038
Derek Allard2067d1a2008-11-13 22:59:24 +00001039 // --------------------------------------------------------------------
1040
1041 /**
1042 * Calculate the aggregate query elapsed time
1043 *
Andrey Andreev4c202602012-03-06 20:34:52 +02001044 * @param int The number of decimal places
James L Parry78301732014-12-16 02:14:52 -08001045 * @return string
Barry Mienydd671972010-10-04 16:33:58 +02001046 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001047 public function elapsed_time($decimals = 6)
Derek Allard2067d1a2008-11-13 22:59:24 +00001048 {
1049 return number_format($this->benchmark, $decimals);
1050 }
Barry Mienydd671972010-10-04 16:33:58 +02001051
Derek Allard2067d1a2008-11-13 22:59:24 +00001052 // --------------------------------------------------------------------
1053
1054 /**
1055 * Returns the total number of queries
1056 *
Andrey Andreev4c202602012-03-06 20:34:52 +02001057 * @return int
Barry Mienydd671972010-10-04 16:33:58 +02001058 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001059 public function total_queries()
Derek Allard2067d1a2008-11-13 22:59:24 +00001060 {
1061 return $this->query_count;
1062 }
Barry Mienydd671972010-10-04 16:33:58 +02001063
Derek Allard2067d1a2008-11-13 22:59:24 +00001064 // --------------------------------------------------------------------
1065
1066 /**
1067 * Returns the last query that was executed
1068 *
Andrey Andreev4c202602012-03-06 20:34:52 +02001069 * @return string
Barry Mienydd671972010-10-04 16:33:58 +02001070 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001071 public function last_query()
Derek Allard2067d1a2008-11-13 22:59:24 +00001072 {
1073 return end($this->queries);
1074 }
1075
1076 // --------------------------------------------------------------------
1077
1078 /**
1079 * "Smart" Escape String
1080 *
1081 * Escapes data based on type
1082 * Sets boolean and null types
1083 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001084 * @param string
Barry Mienydd671972010-10-04 16:33:58 +02001085 * @return mixed
1086 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001087 public function escape($str)
Barry Mienydd671972010-10-04 16:33:58 +02001088 {
clawooa779c482014-10-18 14:47:04 +03001089 if (is_array($str))
1090 {
1091 $str = array_map(array(&$this, 'escape'), $str);
clawoo4a4f5502014-10-20 15:28:08 +03001092 return $str;
clawooa779c482014-10-18 14:47:04 +03001093 }
1094 elseif (is_string($str) OR (is_object($str) && method_exists($str, '__toString')))
Derek Allard2067d1a2008-11-13 22:59:24 +00001095 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001096 return "'".$this->escape_str($str)."'";
Derek Jonesa377bdd2009-02-11 18:55:24 +00001097 }
1098 elseif (is_bool($str))
1099 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001100 return ($str === FALSE) ? 0 : 1;
Derek Jonesa377bdd2009-02-11 18:55:24 +00001101 }
vlakoff1228fe22013-01-14 01:30:09 +01001102 elseif ($str === NULL)
Derek Jonesa377bdd2009-02-11 18:55:24 +00001103 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001104 return 'NULL';
Derek Jonesa377bdd2009-02-11 18:55:24 +00001105 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001106
1107 return $str;
1108 }
1109
1110 // --------------------------------------------------------------------
Derek Jonese7792202010-03-02 17:24:46 -06001111
Derek Jonese4ed5832009-02-20 21:44:59 +00001112 /**
Andrey Andreev0b6a4922013-01-10 16:53:44 +02001113 * Escape String
1114 *
Andrey Andreev0d3fde22015-01-05 16:56:41 +02001115 * @param string|string[] $str Input string
Andrey Andreev0b6a4922013-01-10 16:53:44 +02001116 * @param bool $like Whether or not the string will be used in a LIKE condition
1117 * @return string
1118 */
1119 public function escape_str($str, $like = FALSE)
1120 {
1121 if (is_array($str))
1122 {
1123 foreach ($str as $key => $val)
1124 {
1125 $str[$key] = $this->escape_str($val, $like);
1126 }
1127
1128 return $str;
1129 }
1130
1131 $str = $this->_escape_str($str);
1132
1133 // escape LIKE condition wildcards
1134 if ($like === TRUE)
1135 {
Andrey Andreev7e963512014-02-27 15:43:24 +02001136 return str_replace(
1137 array($this->_like_escape_chr, '%', '_'),
1138 array($this->_like_escape_chr.$this->_like_escape_chr, $this->_like_escape_chr.'%', $this->_like_escape_chr.'_'),
1139 $str
1140 );
Andrey Andreev0b6a4922013-01-10 16:53:44 +02001141 }
1142
1143 return $str;
1144 }
1145
1146 // --------------------------------------------------------------------
1147
1148 /**
Derek Jonesbdc7fb92009-02-20 21:55:10 +00001149 * Escape LIKE String
Derek Jonese4ed5832009-02-20 21:44:59 +00001150 *
1151 * Calls the individual driver for platform
1152 * specific escaping for LIKE conditions
Barry Mienydd671972010-10-04 16:33:58 +02001153 *
Andrey Andreev0b6a4922013-01-10 16:53:44 +02001154 * @param string|string[]
Derek Jonese4ed5832009-02-20 21:44:59 +00001155 * @return mixed
1156 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001157 public function escape_like_str($str)
Barry Mienydd671972010-10-04 16:33:58 +02001158 {
1159 return $this->escape_str($str, TRUE);
Derek Jonese4ed5832009-02-20 21:44:59 +00001160 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001161
Derek Jonese4ed5832009-02-20 21:44:59 +00001162 // --------------------------------------------------------------------
Derek Jonese7792202010-03-02 17:24:46 -06001163
Derek Allard2067d1a2008-11-13 22:59:24 +00001164 /**
Andrey Andreev0b6a4922013-01-10 16:53:44 +02001165 * Platform-dependant string escape
1166 *
1167 * @param string
1168 * @return string
1169 */
1170 protected function _escape_str($str)
1171 {
1172 return str_replace("'", "''", remove_invisible_characters($str));
1173 }
1174
1175 // --------------------------------------------------------------------
1176
1177 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001178 * Primary
1179 *
Andrey Andreev4c202602012-03-06 20:34:52 +02001180 * Retrieves the primary key. It assumes that the row in the first
Derek Allard2067d1a2008-11-13 22:59:24 +00001181 * position is the primary key
1182 *
Andrey Andreev0d3fde22015-01-05 16:56:41 +02001183 * @param string $table Table name
1184 * @return string
Barry Mienydd671972010-10-04 16:33:58 +02001185 */
Andrey Andreev0d3fde22015-01-05 16:56:41 +02001186 public function primary($table)
Barry Mienydd671972010-10-04 16:33:58 +02001187 {
Derek Allard2067d1a2008-11-13 22:59:24 +00001188 $fields = $this->list_fields($table);
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001189 return is_array($fields) ? current($fields) : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001190 }
1191
1192 // --------------------------------------------------------------------
1193
1194 /**
Andrey Andreev16bb9bd2012-05-26 18:21:14 +03001195 * "Count All" query
1196 *
1197 * Generates a platform-specific query string that counts all records in
1198 * the specified database
1199 *
1200 * @param string
1201 * @return int
1202 */
1203 public function count_all($table = '')
1204 {
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001205 if ($table === '')
Andrey Andreev16bb9bd2012-05-26 18:21:14 +03001206 {
1207 return 0;
1208 }
1209
1210 $query = $this->query($this->_count_string.$this->escape_identifiers('numrows').' FROM '.$this->protect_identifiers($table, TRUE, NULL, FALSE));
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001211 if ($query->num_rows() === 0)
Andrey Andreev16bb9bd2012-05-26 18:21:14 +03001212 {
1213 return 0;
1214 }
1215
1216 $query = $query->row();
1217 $this->_reset_select();
1218 return (int) $query->numrows;
1219 }
1220
1221 // --------------------------------------------------------------------
1222
1223 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001224 * Returns an array of table names
1225 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001226 * @param string $constrain_by_prefix = FALSE
Andrey Andreev0d3fde22015-01-05 16:56:41 +02001227 * @return array
Barry Mienydd671972010-10-04 16:33:58 +02001228 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001229 public function list_tables($constrain_by_prefix = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001230 {
1231 // Is there a cached result?
1232 if (isset($this->data_cache['table_names']))
1233 {
1234 return $this->data_cache['table_names'];
1235 }
Barry Mienydd671972010-10-04 16:33:58 +02001236
Derek Allard2067d1a2008-11-13 22:59:24 +00001237 if (FALSE === ($sql = $this->_list_tables($constrain_by_prefix)))
1238 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001239 return ($this->db_debug) ? $this->display_error('db_unsupported_function') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001240 }
1241
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001242 $this->data_cache['table_names'] = array();
Derek Allard2067d1a2008-11-13 22:59:24 +00001243 $query = $this->query($sql);
Barry Mienydd671972010-10-04 16:33:58 +02001244
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001245 foreach ($query->result_array() as $row)
Derek Allard2067d1a2008-11-13 22:59:24 +00001246 {
Andrey Andreev12567e82012-01-25 22:50:33 +02001247 // Do we know from which column to get the table name?
1248 if ( ! isset($key))
Derek Allard2067d1a2008-11-13 22:59:24 +00001249 {
Andrey Andreev6781a5f2012-03-28 14:50:51 +03001250 if (isset($row['table_name']))
Andrey Andreev12567e82012-01-25 22:50:33 +02001251 {
1252 $key = 'table_name';
1253 }
Andrey Andreev6781a5f2012-03-28 14:50:51 +03001254 elseif (isset($row['TABLE_NAME']))
Andrey Andreev12567e82012-01-25 22:50:33 +02001255 {
1256 $key = 'TABLE_NAME';
1257 }
1258 else
1259 {
1260 /* We have no other choice but to just get the first element's key.
vlakoff3a3d5f62013-10-17 22:22:16 +02001261 * Due to array_shift() accepting its argument by reference, if
Andrey Andreev12567e82012-01-25 22:50:33 +02001262 * E_STRICT is on, this would trigger a warning. So we'll have to
1263 * assign it first.
1264 */
1265 $key = array_keys($row);
1266 $key = array_shift($key);
1267 }
Taufan Aditya18209332012-02-09 16:07:27 +07001268 }
1269
Andrey Andreev12567e82012-01-25 22:50:33 +02001270 $this->data_cache['table_names'][] = $row[$key];
Derek Allard2067d1a2008-11-13 22:59:24 +00001271 }
1272
Derek Allard2067d1a2008-11-13 22:59:24 +00001273 return $this->data_cache['table_names'];
1274 }
Barry Mienydd671972010-10-04 16:33:58 +02001275
Derek Allard2067d1a2008-11-13 22:59:24 +00001276 // --------------------------------------------------------------------
1277
1278 /**
1279 * Determine if a particular table exists
Timothy Warrene45518d2012-03-06 07:38:00 -05001280 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001281 * @param string $table_name
Andrey Andreev4c202602012-03-06 20:34:52 +02001282 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +00001283 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001284 public function table_exists($table_name)
Barry Mienydd671972010-10-04 16:33:58 +02001285 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +02001286 return in_array($this->protect_identifiers($table_name, TRUE, FALSE, FALSE), $this->list_tables());
Derek Allard2067d1a2008-11-13 22:59:24 +00001287 }
Barry Mienydd671972010-10-04 16:33:58 +02001288
Derek Allard2067d1a2008-11-13 22:59:24 +00001289 // --------------------------------------------------------------------
1290
1291 /**
Andrey Andreev75546112012-07-05 11:01:29 +03001292 * Fetch Field Names
Derek Allard2067d1a2008-11-13 22:59:24 +00001293 *
Andrey Andreev0f850902015-04-29 12:33:11 +03001294 * @param string $table Table name
Andrey Andreev0d3fde22015-01-05 16:56:41 +02001295 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +00001296 */
Andrey Andreev358b0882015-01-05 21:00:18 +02001297 public function list_fields($table)
Derek Allard2067d1a2008-11-13 22:59:24 +00001298 {
1299 // Is there a cached result?
1300 if (isset($this->data_cache['field_names'][$table]))
1301 {
1302 return $this->data_cache['field_names'][$table];
1303 }
Barry Mienydd671972010-10-04 16:33:58 +02001304
Greg Aker1edde302010-01-26 00:17:01 +00001305 if (FALSE === ($sql = $this->_list_columns($table)))
Derek Allard2067d1a2008-11-13 22:59:24 +00001306 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001307 return ($this->db_debug) ? $this->display_error('db_unsupported_function') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001308 }
Barry Mienydd671972010-10-04 16:33:58 +02001309
Derek Allard2067d1a2008-11-13 22:59:24 +00001310 $query = $this->query($sql);
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001311 $this->data_cache['field_names'][$table] = array();
Barry Mienydd671972010-10-04 16:33:58 +02001312
Pascal Krietec3a4a8d2011-02-14 13:40:08 -05001313 foreach ($query->result_array() as $row)
Derek Allard2067d1a2008-11-13 22:59:24 +00001314 {
Andrey Andreev12567e82012-01-25 22:50:33 +02001315 // Do we know from where to get the column's name?
1316 if ( ! isset($key))
Derek Allard2067d1a2008-11-13 22:59:24 +00001317 {
Andrey Andreev6781a5f2012-03-28 14:50:51 +03001318 if (isset($row['column_name']))
Andrey Andreev12567e82012-01-25 22:50:33 +02001319 {
1320 $key = 'column_name';
1321 }
Andrey Andreev6781a5f2012-03-28 14:50:51 +03001322 elseif (isset($row['COLUMN_NAME']))
Andrey Andreev12567e82012-01-25 22:50:33 +02001323 {
1324 $key = 'COLUMN_NAME';
1325 }
1326 else
1327 {
RJ garcia395e2df2013-03-21 10:48:24 -05001328 // We have no other choice but to just get the first element's key.
1329 $key = key($row);
Andrey Andreev12567e82012-01-25 22:50:33 +02001330 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001331 }
Andrey Andreev12567e82012-01-25 22:50:33 +02001332
1333 $this->data_cache['field_names'][$table][] = $row[$key];
Derek Allard2067d1a2008-11-13 22:59:24 +00001334 }
Barry Mienydd671972010-10-04 16:33:58 +02001335
Derek Allard2067d1a2008-11-13 22:59:24 +00001336 return $this->data_cache['field_names'][$table];
1337 }
1338
1339 // --------------------------------------------------------------------
1340
1341 /**
1342 * Determine if a particular field exists
Timothy Warrene45518d2012-03-06 07:38:00 -05001343 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001344 * @param string
1345 * @param string
Andrey Andreev4c202602012-03-06 20:34:52 +02001346 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +00001347 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001348 public function field_exists($field_name, $table_name)
Barry Mienydd671972010-10-04 16:33:58 +02001349 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001350 return in_array($field_name, $this->list_fields($table_name));
Derek Allard2067d1a2008-11-13 22:59:24 +00001351 }
Barry Mienydd671972010-10-04 16:33:58 +02001352
Derek Allard2067d1a2008-11-13 22:59:24 +00001353 // --------------------------------------------------------------------
1354
1355 /**
1356 * Returns an object with field data
1357 *
Andrey Andreev0d3fde22015-01-05 16:56:41 +02001358 * @param string $table the table name
1359 * @return array
Barry Mienydd671972010-10-04 16:33:58 +02001360 */
Andrey Andreev0d3fde22015-01-05 16:56:41 +02001361 public function field_data($table)
Derek Allard2067d1a2008-11-13 22:59:24 +00001362 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +02001363 $query = $this->query($this->_field_data($this->protect_identifiers($table, TRUE, NULL, FALSE)));
Andrey Andreev0d3fde22015-01-05 16:56:41 +02001364 return ($query) ? $query->field_data() : FALSE;
Barry Mienydd671972010-10-04 16:33:58 +02001365 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001366
1367 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001368
Derek Allard2067d1a2008-11-13 22:59:24 +00001369 /**
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001370 * Escape the SQL Identifiers
1371 *
1372 * This function escapes column and table names
1373 *
Andrey Andreev9637b402012-06-08 15:39:24 +03001374 * @param mixed
1375 * @return mixed
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001376 */
1377 public function escape_identifiers($item)
1378 {
Andrey Andreeva7ddd2d2012-11-06 11:53:45 +02001379 if ($this->_escape_char === '' OR empty($item) OR in_array($item, $this->_reserved_identifiers))
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001380 {
1381 return $item;
1382 }
Andrey Andreev9637b402012-06-08 15:39:24 +03001383 elseif (is_array($item))
1384 {
1385 foreach ($item as $key => $value)
1386 {
1387 $item[$key] = $this->escape_identifiers($value);
1388 }
1389
1390 return $item;
1391 }
Andrey Andreev49aa45b2012-07-06 16:22:21 +03001392 // Avoid breaking functions and literal values inside queries
Andrey Andreev9859cb02012-07-13 13:07:58 +03001393 elseif (ctype_digit($item) OR $item[0] === "'" OR ($this->_escape_char !== '"' && $item[0] === '"') OR strpos($item, '(') !== FALSE)
Andrey Andreev7db0f592012-06-28 17:54:27 +03001394 {
1395 return $item;
1396 }
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001397
Andrey Andreev082ee2b2012-06-08 15:26:34 +03001398 static $preg_ec = array();
1399
1400 if (empty($preg_ec))
1401 {
1402 if (is_array($this->_escape_char))
1403 {
Andrey Andreev2636c1c2012-07-02 14:53:39 +03001404 $preg_ec = array(
Andrey Andreev7e963512014-02-27 15:43:24 +02001405 preg_quote($this->_escape_char[0], '/'),
1406 preg_quote($this->_escape_char[1], '/'),
1407 $this->_escape_char[0],
1408 $this->_escape_char[1]
1409 );
Andrey Andreev082ee2b2012-06-08 15:26:34 +03001410 }
1411 else
1412 {
Andrey Andreeve4742582012-10-25 13:25:13 +03001413 $preg_ec[0] = $preg_ec[1] = preg_quote($this->_escape_char, '/');
Andrey Andreev2636c1c2012-07-02 14:53:39 +03001414 $preg_ec[2] = $preg_ec[3] = $this->_escape_char;
Andrey Andreev082ee2b2012-06-08 15:26:34 +03001415 }
1416 }
1417
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001418 foreach ($this->_reserved_identifiers as $id)
1419 {
1420 if (strpos($item, '.'.$id) !== FALSE)
1421 {
Andrey Andreev2636c1c2012-07-02 14:53:39 +03001422 return preg_replace('/'.$preg_ec[0].'?([^'.$preg_ec[1].'\.]+)'.$preg_ec[1].'?\./i', $preg_ec[2].'$1'.$preg_ec[3].'.', $item);
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001423 }
1424 }
1425
Andrey Andreev2636c1c2012-07-02 14:53:39 +03001426 return preg_replace('/'.$preg_ec[0].'?([^'.$preg_ec[1].'\.]+)'.$preg_ec[1].'?(\.)?/i', $preg_ec[2].'$1'.$preg_ec[3].'$2', $item);
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001427 }
1428
1429 // --------------------------------------------------------------------
1430
1431 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001432 * Generate an insert string
1433 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001434 * @param string the table upon which the query will be performed
1435 * @param array an associative array data of key/values
Barry Mienydd671972010-10-04 16:33:58 +02001436 * @return string
1437 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001438 public function insert_string($table, $data)
Derek Allard2067d1a2008-11-13 22:59:24 +00001439 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001440 $fields = $values = array();
Barry Mienydd671972010-10-04 16:33:58 +02001441
Pascal Krietec3a4a8d2011-02-14 13:40:08 -05001442 foreach ($data as $key => $val)
Derek Allard2067d1a2008-11-13 22:59:24 +00001443 {
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001444 $fields[] = $this->escape_identifiers($key);
Derek Allard2067d1a2008-11-13 22:59:24 +00001445 $values[] = $this->escape($val);
1446 }
Barry Mienydd671972010-10-04 16:33:58 +02001447
Andrey Andreev032e7ea2012-03-06 19:48:35 +02001448 return $this->_insert($this->protect_identifiers($table, TRUE, NULL, FALSE), $fields, $values);
Barry Mienydd671972010-10-04 16:33:58 +02001449 }
1450
Derek Allard2067d1a2008-11-13 22:59:24 +00001451 // --------------------------------------------------------------------
1452
1453 /**
Andrey Andreev75546112012-07-05 11:01:29 +03001454 * Insert statement
1455 *
1456 * Generates a platform-specific insert string from the supplied data
1457 *
1458 * @param string the table name
1459 * @param array the insert keys
1460 * @param array the insert values
1461 * @return string
1462 */
1463 protected function _insert($table, $keys, $values)
1464 {
1465 return 'INSERT INTO '.$table.' ('.implode(', ', $keys).') VALUES ('.implode(', ', $values).')';
1466 }
1467
1468 // --------------------------------------------------------------------
1469
1470 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001471 * Generate an update string
1472 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001473 * @param string the table upon which the query will be performed
1474 * @param array an associative array data of key/values
1475 * @param mixed the "where" statement
Barry Mienydd671972010-10-04 16:33:58 +02001476 * @return string
1477 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001478 public function update_string($table, $data, $where)
Derek Allard2067d1a2008-11-13 22:59:24 +00001479 {
Andrey Andreev87f4dc22012-11-01 01:11:22 +02001480 if (empty($where))
Derek Allard2067d1a2008-11-13 22:59:24 +00001481 {
Andrey Andreev4c202602012-03-06 20:34:52 +02001482 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001483 }
Barry Mienydd671972010-10-04 16:33:58 +02001484
Andrey Andreev87f4dc22012-11-01 01:11:22 +02001485 $this->where($where);
1486
Derek Allard2067d1a2008-11-13 22:59:24 +00001487 $fields = array();
Pascal Krietec3a4a8d2011-02-14 13:40:08 -05001488 foreach ($data as $key => $val)
Derek Allard2067d1a2008-11-13 22:59:24 +00001489 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +02001490 $fields[$this->protect_identifiers($key)] = $this->escape($val);
Derek Allard2067d1a2008-11-13 22:59:24 +00001491 }
1492
Andrey Andreev79f888b2013-08-06 13:59:23 +03001493 $sql = $this->_update($this->protect_identifiers($table, TRUE, NULL, FALSE), $fields);
1494 $this->_reset_write();
1495 return $sql;
Barry Mienydd671972010-10-04 16:33:58 +02001496 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001497
1498 // --------------------------------------------------------------------
1499
1500 /**
Andrey Andreev75546112012-07-05 11:01:29 +03001501 * Update statement
1502 *
1503 * Generates a platform-specific update string from the supplied data
1504 *
1505 * @param string the table name
Andrey Andreev822317b2012-07-19 16:00:32 +03001506 * @param array the update data
Andrey Andreev75546112012-07-05 11:01:29 +03001507 * @return string
1508 */
Andrey Andreevb0478652012-07-18 15:34:46 +03001509 protected function _update($table, $values)
Andrey Andreev75546112012-07-05 11:01:29 +03001510 {
1511 foreach ($values as $key => $val)
1512 {
1513 $valstr[] = $key.' = '.$val;
1514 }
1515
Andrey Andreev75546112012-07-05 11:01:29 +03001516 return 'UPDATE '.$table.' SET '.implode(', ', $valstr)
Andrey Andreev2d486232012-07-19 14:46:51 +03001517 .$this->_compile_wh('qb_where')
1518 .$this->_compile_order_by()
Andrey Andreevc9b924c2012-07-19 13:06:02 +03001519 .($this->qb_limit ? ' LIMIT '.$this->qb_limit : '');
Andrey Andreev75546112012-07-05 11:01:29 +03001520 }
1521
1522 // --------------------------------------------------------------------
1523
1524 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001525 * Tests whether the string has an SQL operator
1526 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001527 * @param string
1528 * @return bool
1529 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001530 protected function _has_operator($str)
Derek Allard2067d1a2008-11-13 22:59:24 +00001531 {
Andrey Andreev5078eb52014-12-02 01:11:54 +02001532 return (bool) preg_match('/(<|>|!|=|\sIS NULL|\sIS NOT NULL|\sEXISTS|\sBETWEEN|\sLIKE|\sIN\s*\(|\s)/i', trim($str));
Derek Allard2067d1a2008-11-13 22:59:24 +00001533 }
1534
1535 // --------------------------------------------------------------------
1536
1537 /**
Andrey Andreev929fd2d2012-06-17 17:29:57 +03001538 * Returns the SQL string operator
1539 *
1540 * @param string
1541 * @return string
1542 */
1543 protected function _get_operator($str)
1544 {
Andrey Andreeve8be24b2012-07-19 16:11:17 +03001545 static $_operators;
Andrey Andreev6e704752012-07-18 00:46:33 +03001546
Andrey Andreeve8be24b2012-07-19 16:11:17 +03001547 if (empty($_operators))
Andrey Andreevb0478652012-07-18 15:34:46 +03001548 {
Andrey Andreeve8be24b2012-07-19 16:11:17 +03001549 $_les = ($this->_like_escape_str !== '')
Andrey Andreeve4742582012-10-25 13:25:13 +03001550 ? '\s+'.preg_quote(trim(sprintf($this->_like_escape_str, $this->_like_escape_chr)), '/')
Andrey Andreeve8be24b2012-07-19 16:11:17 +03001551 : '';
Andrey Andreeve8be24b2012-07-19 16:11:17 +03001552 $_operators = array(
Andrey Andreev348a2d42015-08-31 17:39:04 +03001553 '\s*(?:<|>|!)?=\s*', // =, <=, >=, !=
1554 '\s*<>?\s*', // <, <>
1555 '\s*>\s*', // >
1556 '\s+IS NULL', // IS NULL
1557 '\s+IS NOT NULL', // IS NOT NULL
1558 '\s+EXISTS\s*\([^\)]+\)', // EXISTS(sql)
1559 '\s+NOT EXISTS\s*\([^\)]+\)', // NOT EXISTS(sql)
Andrey Andreev0d0c53c2015-09-03 11:23:44 +03001560 '\s+BETWEEN\s+', // BETWEEN value AND value
Andrey Andreev348a2d42015-08-31 17:39:04 +03001561 '\s+IN\s*\([^\)]+\)', // IN(list)
1562 '\s+NOT IN\s*\([^\)]+\)', // NOT IN (list)
1563 '\s+LIKE\s+\S.*('.$_les.')?', // LIKE 'expr'[ ESCAPE '%s']
1564 '\s+NOT LIKE\s+\S.*('.$_les.')?' // NOT LIKE 'expr'[ ESCAPE '%s']
Andrey Andreeve8be24b2012-07-19 16:11:17 +03001565 );
1566
1567 }
Andrey Andreevb0478652012-07-18 15:34:46 +03001568
Andrey Andreev6e704752012-07-18 00:46:33 +03001569 return preg_match('/'.implode('|', $_operators).'/i', $str, $match)
1570 ? $match[0] : FALSE;
Andrey Andreev929fd2d2012-06-17 17:29:57 +03001571 }
1572
1573 // --------------------------------------------------------------------
1574
1575 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001576 * Enables a native PHP function to be run, using a platform agnostic wrapper.
1577 *
Andrey Andreevae85eb42012-11-02 01:42:31 +02001578 * @param string $function Function name
Barry Mienydd671972010-10-04 16:33:58 +02001579 * @return mixed
1580 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001581 public function call_function($function)
Derek Allard2067d1a2008-11-13 22:59:24 +00001582 {
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001583 $driver = ($this->dbdriver === 'postgre') ? 'pg_' : $this->dbdriver.'_';
Barry Mienydd671972010-10-04 16:33:58 +02001584
Derek Allard2067d1a2008-11-13 22:59:24 +00001585 if (FALSE === strpos($driver, $function))
1586 {
1587 $function = $driver.$function;
1588 }
Barry Mienydd671972010-10-04 16:33:58 +02001589
Derek Allard2067d1a2008-11-13 22:59:24 +00001590 if ( ! function_exists($function))
1591 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001592 return ($this->db_debug) ? $this->display_error('db_unsupported_function') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001593 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001594
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001595 return (func_num_args() > 1)
Kakyshaa3f91b92013-12-14 05:23:23 +04001596 ? call_user_func_array($function, array_slice(func_get_args(), 1))
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001597 : call_user_func($function);
Derek Allard2067d1a2008-11-13 22:59:24 +00001598 }
1599
1600 // --------------------------------------------------------------------
1601
1602 /**
1603 * Set Cache Directory Path
1604 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001605 * @param string the path to the cache directory
1606 * @return void
Barry Mienydd671972010-10-04 16:33:58 +02001607 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001608 public function cache_set_path($path = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001609 {
1610 $this->cachedir = $path;
1611 }
1612
1613 // --------------------------------------------------------------------
1614
1615 /**
1616 * Enable Query Caching
1617 *
Andrey Andreev4c202602012-03-06 20:34:52 +02001618 * @return bool cache_on value
Barry Mienydd671972010-10-04 16:33:58 +02001619 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001620 public function cache_on()
Derek Allard2067d1a2008-11-13 22:59:24 +00001621 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001622 return $this->cache_on = TRUE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001623 }
1624
1625 // --------------------------------------------------------------------
1626
1627 /**
1628 * Disable Query Caching
1629 *
Andrey Andreev4c202602012-03-06 20:34:52 +02001630 * @return bool cache_on value
Barry Mienydd671972010-10-04 16:33:58 +02001631 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001632 public function cache_off()
Derek Allard2067d1a2008-11-13 22:59:24 +00001633 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001634 return $this->cache_on = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001635 }
Barry Mienydd671972010-10-04 16:33:58 +02001636
Derek Allard2067d1a2008-11-13 22:59:24 +00001637 // --------------------------------------------------------------------
1638
1639 /**
1640 * Delete the cache files associated with a particular URI
1641 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001642 * @param string $segment_one = ''
1643 * @param string $segment_two = ''
Andrey Andreev4c202602012-03-06 20:34:52 +02001644 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +02001645 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001646 public function cache_delete($segment_one = '', $segment_two = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001647 {
Andrey Andreev7e963512014-02-27 15:43:24 +02001648 return $this->_cache_init()
Andrey Andreev043f2602012-03-06 20:16:42 +02001649 ? $this->CACHE->delete($segment_one, $segment_two)
1650 : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001651 }
1652
1653 // --------------------------------------------------------------------
1654
1655 /**
1656 * Delete All cache files
1657 *
Andrey Andreev4c202602012-03-06 20:34:52 +02001658 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +02001659 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001660 public function cache_delete_all()
Derek Allard2067d1a2008-11-13 22:59:24 +00001661 {
Andrey Andreev7e963512014-02-27 15:43:24 +02001662 return $this->_cache_init()
Andrey Andreev043f2602012-03-06 20:16:42 +02001663 ? $this->CACHE->delete_all()
1664 : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001665 }
1666
1667 // --------------------------------------------------------------------
1668
1669 /**
1670 * Initialize the Cache Class
1671 *
Andrey Andreev4c202602012-03-06 20:34:52 +02001672 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +02001673 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001674 protected function _cache_init()
Derek Allard2067d1a2008-11-13 22:59:24 +00001675 {
Andrey Andreev58e1c002014-02-26 18:51:18 +02001676 if ( ! class_exists('CI_DB_Cache', FALSE))
Derek Allard2067d1a2008-11-13 22:59:24 +00001677 {
Andrey Andreev58e1c002014-02-26 18:51:18 +02001678 require_once(BASEPATH.'database/DB_cache.php');
Derek Allard2067d1a2008-11-13 22:59:24 +00001679 }
Andrey Andreev58e1c002014-02-26 18:51:18 +02001680 elseif (is_object($this->CACHE))
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001681 {
Andrey Andreev58e1c002014-02-26 18:51:18 +02001682 return TRUE;
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001683 }
Derek Allarde37ab382009-02-03 16:13:57 +00001684
Derek Allard2067d1a2008-11-13 22:59:24 +00001685 $this->CACHE = new CI_DB_Cache($this); // pass db object to support multiple db connections and returned db objects
1686 return TRUE;
1687 }
1688
1689 // --------------------------------------------------------------------
1690
1691 /**
1692 * Close DB Connection
1693 *
Barry Mienydd671972010-10-04 16:33:58 +02001694 * @return void
1695 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001696 public function close()
Derek Allard2067d1a2008-11-13 22:59:24 +00001697 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001698 if ($this->conn_id)
Derek Allard2067d1a2008-11-13 22:59:24 +00001699 {
Andrey Andreev79922c02012-05-23 12:27:17 +03001700 $this->_close();
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001701 $this->conn_id = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001702 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001703 }
Barry Mienydd671972010-10-04 16:33:58 +02001704
Derek Allard2067d1a2008-11-13 22:59:24 +00001705 // --------------------------------------------------------------------
1706
1707 /**
Andrey Andreev79922c02012-05-23 12:27:17 +03001708 * Close DB Connection
1709 *
Claudio Galdiolob83a3d22015-01-29 11:42:50 -05001710 * This method would be overridden by most of the drivers.
Andrey Andreev79922c02012-05-23 12:27:17 +03001711 *
1712 * @return void
1713 */
1714 protected function _close()
1715 {
1716 $this->conn_id = FALSE;
1717 }
1718
1719 // --------------------------------------------------------------------
1720
1721 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001722 * Display an error message
1723 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001724 * @param string the error message
1725 * @param string any "swap" values
Andrey Andreev4c202602012-03-06 20:34:52 +02001726 * @param bool whether to localize the message
vlakoff52301c72013-03-29 14:23:34 +01001727 * @return string sends the application/views/errors/error_db.php template
Barry Mienydd671972010-10-04 16:33:58 +02001728 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001729 public function display_error($error = '', $swap = '', $native = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001730 {
Derek Jonese7792202010-03-02 17:24:46 -06001731 $LANG =& load_class('Lang', 'core');
Derek Allard2067d1a2008-11-13 22:59:24 +00001732 $LANG->load('db');
1733
1734 $heading = $LANG->line('db_error_heading');
1735
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001736 if ($native === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001737 {
Andrey Andreev85a99cc2011-09-24 17:17:37 +03001738 $message = (array) $error;
Derek Allard2067d1a2008-11-13 22:59:24 +00001739 }
1740 else
1741 {
Andrey Andreev1194ad72012-10-05 17:05:46 +03001742 $message = is_array($error) ? $error : array(str_replace('%s', $swap, $LANG->line($error)));
Derek Allard2067d1a2008-11-13 22:59:24 +00001743 }
Barry Mienydd671972010-10-04 16:33:58 +02001744
Pascal Kriete60f8c392010-08-25 18:03:28 +02001745 // Find the most likely culprit of the error by going through
1746 // the backtrace until the source file is no longer in the
1747 // database folder.
Pascal Kriete60f8c392010-08-25 18:03:28 +02001748 $trace = debug_backtrace();
Pascal Krietec3a4a8d2011-02-14 13:40:08 -05001749 foreach ($trace as $call)
Pascal Kriete60f8c392010-08-25 18:03:28 +02001750 {
Andrey Andreev342bb7e2012-11-20 23:17:28 +02001751 if (isset($call['file'], $call['class']))
Andrey Andreev1194ad72012-10-05 17:05:46 +03001752 {
Andrey Andreev342bb7e2012-11-20 23:17:28 +02001753 // We'll need this on Windows, as APPPATH and BASEPATH will always use forward slashes
1754 if (DIRECTORY_SEPARATOR !== '/')
1755 {
1756 $call['file'] = str_replace('\\', '/', $call['file']);
1757 }
Andrey Andreev1194ad72012-10-05 17:05:46 +03001758
Andrey Andreev342bb7e2012-11-20 23:17:28 +02001759 if (strpos($call['file'], BASEPATH.'database') === FALSE && strpos($call['class'], 'Loader') === FALSE)
1760 {
1761 // Found it - use a relative path for safety
1762 $message[] = 'Filename: '.str_replace(array(APPPATH, BASEPATH), '', $call['file']);
1763 $message[] = 'Line Number: '.$call['line'];
1764 break;
1765 }
Pascal Kriete60f8c392010-08-25 18:03:28 +02001766 }
1767 }
Barry Mienydd671972010-10-04 16:33:58 +02001768
Derek Jonese7792202010-03-02 17:24:46 -06001769 $error =& load_class('Exceptions', 'core');
Derek Allard2067d1a2008-11-13 22:59:24 +00001770 echo $error->show_error($heading, $message, 'error_db');
Andrey Andreev7cf682a2014-03-13 14:55:45 +02001771 exit(8); // EXIT_DATABASE
Derek Allard2067d1a2008-11-13 22:59:24 +00001772 }
1773
1774 // --------------------------------------------------------------------
1775
1776 /**
1777 * Protect Identifiers
1778 *
Jamie Rumbelow7efad202012-02-19 12:37:00 +00001779 * This function is used extensively by the Query Builder class, and by
Barry Mienydd671972010-10-04 16:33:58 +02001780 * a couple functions in this class.
Derek Allard2067d1a2008-11-13 22:59:24 +00001781 * It takes a column or table name (optionally with an alias) and inserts
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001782 * the table prefix onto it. Some logic is necessary in order to deal with
Andrey Andreev4c202602012-03-06 20:34:52 +02001783 * column names that include the path. Consider a query like this:
Derek Allard2067d1a2008-11-13 22:59:24 +00001784 *
1785 * SELECT * FROM hostname.database.table.column AS c FROM hostname.database.table
1786 *
1787 * Or a query with aliasing:
1788 *
1789 * SELECT m.member_id, m.member_name FROM members AS m
1790 *
1791 * Since the column name can include up to four segments (host, DB, table, column)
1792 * or also have an alias prefix, we need to do a bit of work to figure this out and
1793 * insert the table prefix (if it exists) in the proper position, and escape only
1794 * the correct identifiers.
1795 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001796 * @param string
1797 * @param bool
1798 * @param mixed
1799 * @param bool
1800 * @return string
Barry Mienydd671972010-10-04 16:33:58 +02001801 */
Andrey Andreev032e7ea2012-03-06 19:48:35 +02001802 public function protect_identifiers($item, $prefix_single = FALSE, $protect_identifiers = NULL, $field_exists = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001803 {
1804 if ( ! is_bool($protect_identifiers))
1805 {
Jamie Rumbelow0cd8c792012-03-08 12:52:24 +00001806 $protect_identifiers = $this->_protect_identifiers;
Derek Allard2067d1a2008-11-13 22:59:24 +00001807 }
Derek Allarde37ab382009-02-03 16:13:57 +00001808
1809 if (is_array($item))
1810 {
1811 $escaped_array = array();
Pascal Krietec3a4a8d2011-02-14 13:40:08 -05001812 foreach ($item as $k => $v)
Derek Allarde37ab382009-02-03 16:13:57 +00001813 {
Andrey Andreevbf940582012-06-10 07:05:05 +03001814 $escaped_array[$this->protect_identifiers($k)] = $this->protect_identifiers($v, $prefix_single, $protect_identifiers, $field_exists);
Derek Allarde37ab382009-02-03 16:13:57 +00001815 }
1816
1817 return $escaped_array;
1818 }
1819
Derek Allard911d3e02008-12-15 14:08:35 +00001820 // This is basically a bug fix for queries that use MAX, MIN, etc.
Barry Mienydd671972010-10-04 16:33:58 +02001821 // If a parenthesis is found we know that we do not need to
Andrey Andreev4c202602012-03-06 20:34:52 +02001822 // escape the data or add a prefix. There's probably a more graceful
Derek Allard911d3e02008-12-15 14:08:35 +00001823 // way to deal with this, but I'm not thinking of it -- Rick
Andrey Andreev3b0c08a2013-03-29 15:15:41 +02001824 //
1825 // Added exception for single quotes as well, we don't want to alter
1826 // literal strings. -- Narf
Andrey Andreev49884bc2015-06-29 11:52:34 +03001827 if (strcspn($item, "()'") !== strlen($item))
Derek Allard911d3e02008-12-15 14:08:35 +00001828 {
Andrey Andreev4db16322012-06-10 15:12:02 +03001829 return $item;
Derek Allard911d3e02008-12-15 14:08:35 +00001830 }
1831
Andrey Andreevbf940582012-06-10 07:05:05 +03001832 // Convert tabs or multiple spaces into single spaces
Andrey Andreevbe178a72015-08-20 13:23:21 +03001833 $item = preg_replace('/\s+/', ' ', trim($item));
Andrey Andreevbf940582012-06-10 07:05:05 +03001834
Andrey Andreevbf940582012-06-10 07:05:05 +03001835 // If the item has an alias declaration we remove it and set it aside.
Andrey Andreev929fd2d2012-06-17 17:29:57 +03001836 // Note: strripos() is used in order to support spaces in table names
1837 if ($offset = strripos($item, ' AS '))
Andrey Andreevbf940582012-06-10 07:05:05 +03001838 {
Andrey Andreev929fd2d2012-06-17 17:29:57 +03001839 $alias = ($protect_identifiers)
Andrey Andreev7e963512014-02-27 15:43:24 +02001840 ? substr($item, $offset, 4).$this->escape_identifiers(substr($item, $offset + 4))
1841 : substr($item, $offset);
Andrey Andreev929fd2d2012-06-17 17:29:57 +03001842 $item = substr($item, 0, $offset);
1843 }
1844 elseif ($offset = strrpos($item, ' '))
1845 {
1846 $alias = ($protect_identifiers)
Andrey Andreev7e963512014-02-27 15:43:24 +02001847 ? ' '.$this->escape_identifiers(substr($item, $offset + 1))
1848 : substr($item, $offset);
Andrey Andreev929fd2d2012-06-17 17:29:57 +03001849 $item = substr($item, 0, $offset);
Andrey Andreevbf940582012-06-10 07:05:05 +03001850 }
1851 else
1852 {
1853 $alias = '';
1854 }
1855
Derek Allard2067d1a2008-11-13 22:59:24 +00001856 // Break the string apart if it contains periods, then insert the table prefix
1857 // in the correct location, assuming the period doesn't indicate that we're dealing
1858 // with an alias. While we're at it, we will escape the components
1859 if (strpos($item, '.') !== FALSE)
1860 {
Andrey Andreeva12cf282015-08-07 17:37:05 +03001861 $parts = explode('.', $item);
Barry Mienydd671972010-10-04 16:33:58 +02001862
Derek Allard2067d1a2008-11-13 22:59:24 +00001863 // Does the first segment of the exploded item match
Andrey Andreev4c202602012-03-06 20:34:52 +02001864 // one of the aliases previously identified? If so,
Derek Allard2067d1a2008-11-13 22:59:24 +00001865 // we have nothing more to do other than escape the item
Andrey Andreeva12cf282015-08-07 17:37:05 +03001866 //
1867 // NOTE: The ! empty() condition prevents this method
1868 // from breaking when QB isn't enabled.
1869 if ( ! empty($this->qb_aliased_tables) && in_array($parts[0], $this->qb_aliased_tables))
Derek Allard911d3e02008-12-15 14:08:35 +00001870 {
Derek Allard2067d1a2008-11-13 22:59:24 +00001871 if ($protect_identifiers === TRUE)
1872 {
1873 foreach ($parts as $key => $val)
1874 {
1875 if ( ! in_array($val, $this->_reserved_identifiers))
1876 {
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001877 $parts[$key] = $this->escape_identifiers($val);
Derek Allard2067d1a2008-11-13 22:59:24 +00001878 }
1879 }
Barry Mienydd671972010-10-04 16:33:58 +02001880
Derek Allard2067d1a2008-11-13 22:59:24 +00001881 $item = implode('.', $parts);
Barry Mienydd671972010-10-04 16:33:58 +02001882 }
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001883
Derek Allard2067d1a2008-11-13 22:59:24 +00001884 return $item.$alias;
1885 }
Barry Mienydd671972010-10-04 16:33:58 +02001886
Andrey Andreev4c202602012-03-06 20:34:52 +02001887 // Is there a table prefix defined in the config file? If not, no need to do anything
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001888 if ($this->dbprefix !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001889 {
1890 // We now add the table prefix based on some logic.
1891 // Do we have 4 segments (hostname.database.table.column)?
1892 // If so, we add the table prefix to the column name in the 3rd segment.
1893 if (isset($parts[3]))
1894 {
1895 $i = 2;
1896 }
1897 // Do we have 3 segments (database.table.column)?
1898 // If so, we add the table prefix to the column name in 2nd position
1899 elseif (isset($parts[2]))
1900 {
1901 $i = 1;
1902 }
1903 // Do we have 2 segments (table.column)?
1904 // If so, we add the table prefix to the column name in 1st segment
1905 else
1906 {
1907 $i = 0;
1908 }
Barry Mienydd671972010-10-04 16:33:58 +02001909
Derek Allard2067d1a2008-11-13 22:59:24 +00001910 // This flag is set when the supplied $item does not contain a field name.
1911 // This can happen when this function is being called from a JOIN.
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001912 if ($field_exists === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001913 {
1914 $i++;
1915 }
Barry Mienydd671972010-10-04 16:33:58 +02001916
Derek Jones55acc8b2009-07-11 03:38:13 +00001917 // Verify table prefix and replace if necessary
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001918 if ($this->swap_pre !== '' && strpos($parts[$i], $this->swap_pre) === 0)
Derek Jones55acc8b2009-07-11 03:38:13 +00001919 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001920 $parts[$i] = preg_replace('/^'.$this->swap_pre.'(\S+?)/', $this->dbprefix.'\\1', $parts[$i]);
Derek Jones55acc8b2009-07-11 03:38:13 +00001921 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001922 // We only add the table prefix if it does not already exist
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001923 elseif (strpos($parts[$i], $this->dbprefix) !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001924 {
1925 $parts[$i] = $this->dbprefix.$parts[$i];
1926 }
Barry Mienydd671972010-10-04 16:33:58 +02001927
Derek Allard2067d1a2008-11-13 22:59:24 +00001928 // Put the parts back together
1929 $item = implode('.', $parts);
1930 }
Barry Mienydd671972010-10-04 16:33:58 +02001931
Derek Allard2067d1a2008-11-13 22:59:24 +00001932 if ($protect_identifiers === TRUE)
1933 {
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001934 $item = $this->escape_identifiers($item);
Derek Allard2067d1a2008-11-13 22:59:24 +00001935 }
Barry Mienydd671972010-10-04 16:33:58 +02001936
Derek Allard2067d1a2008-11-13 22:59:24 +00001937 return $item.$alias;
1938 }
1939
Andrey Andreev4c202602012-03-06 20:34:52 +02001940 // Is there a table prefix? If not, no need to insert it
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001941 if ($this->dbprefix !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001942 {
Derek Jones55acc8b2009-07-11 03:38:13 +00001943 // Verify table prefix and replace if necessary
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001944 if ($this->swap_pre !== '' && strpos($item, $this->swap_pre) === 0)
Derek Jones55acc8b2009-07-11 03:38:13 +00001945 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001946 $item = preg_replace('/^'.$this->swap_pre.'(\S+?)/', $this->dbprefix.'\\1', $item);
Derek Jones55acc8b2009-07-11 03:38:13 +00001947 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001948 // Do we prefix an item with no segments?
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001949 elseif ($prefix_single === TRUE && strpos($item, $this->dbprefix) !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001950 {
1951 $item = $this->dbprefix.$item;
Barry Mienydd671972010-10-04 16:33:58 +02001952 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001953 }
1954
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001955 if ($protect_identifiers === TRUE && ! in_array($item, $this->_reserved_identifiers))
Derek Allard2067d1a2008-11-13 22:59:24 +00001956 {
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001957 $item = $this->escape_identifiers($item);
Derek Allard2067d1a2008-11-13 22:59:24 +00001958 }
Barry Mienydd671972010-10-04 16:33:58 +02001959
Derek Allard2067d1a2008-11-13 22:59:24 +00001960 return $item.$alias;
1961 }
Andrey Andreev4c202602012-03-06 20:34:52 +02001962
Túbal Martín511f2252011-11-24 14:43:45 +01001963 // --------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +00001964
Túbal Martín511f2252011-11-24 14:43:45 +01001965 /**
Jamie Rumbelow17c1bed2012-03-06 21:30:38 +00001966 * Dummy method that allows Query Builder class to be disabled
Andrey Andreev16bb9bd2012-05-26 18:21:14 +03001967 * and keep count_all() working.
Túbal Martín511f2252011-11-24 14:43:45 +01001968 *
Túbal Martín511f2252011-11-24 14:43:45 +01001969 * @return void
1970 */
1971 protected function _reset_select()
1972 {
Túbal Martín511f2252011-11-24 14:43:45 +01001973 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001974
1975}