blob: 659664db97208be617d570bcb954850b1352b35f [file] [log] [blame]
Etki640ff4e2014-04-09 23:01:33 +04001<?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 {
671 $this->trans_complete();
672 }
673 while ($this->_trans_depth !== 0);
674 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000675
Niklas Nilssond2018ee2011-08-30 13:39:42 +0200676 // Display errors
Andrey Andreev27984582012-03-03 04:43:10 +0200677 return $this->display_error(array('Error Number: '.$error['code'], $error['message'], $sql));
Derek Allard2067d1a2008-11-13 22:59:24 +0000678 }
Barry Mienydd671972010-10-04 16:33:58 +0200679
Derek Allard2067d1a2008-11-13 22:59:24 +0000680 return FALSE;
681 }
Barry Mienydd671972010-10-04 16:33:58 +0200682
Derek Allard2067d1a2008-11-13 22:59:24 +0000683 // Stop and aggregate the query time results
dixyab3cab52012-04-21 00:58:00 +0200684 $time_end = microtime(TRUE);
685 $this->benchmark += $time_end - $time_start;
Derek Allard2067d1a2008-11-13 22:59:24 +0000686
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100687 if ($this->save_queries === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000688 {
dixyab3cab52012-04-21 00:58:00 +0200689 $this->query_times[] = $time_end - $time_start;
Derek Allard2067d1a2008-11-13 22:59:24 +0000690 }
Barry Mienydd671972010-10-04 16:33:58 +0200691
Derek Allard2067d1a2008-11-13 22:59:24 +0000692 // Increment the query counter
693 $this->query_count++;
Barry Mienydd671972010-10-04 16:33:58 +0200694
Andrey Andreevb66664b2012-06-27 14:22:10 +0300695 // Will we have a result object instantiated? If not - we'll simply return TRUE
696 if ($return_object !== TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000697 {
Andrey Andreevb66664b2012-06-27 14:22:10 +0300698 // If caching is enabled we'll auto-cleanup any existing files related to this particular URI
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100699 if ($this->cache_on === TRUE && $this->cache_autodel === TRUE && $this->_cache_init())
Derek Allard2067d1a2008-11-13 22:59:24 +0000700 {
701 $this->CACHE->delete();
702 }
Barry Mienydd671972010-10-04 16:33:58 +0200703
Derek Allard2067d1a2008-11-13 22:59:24 +0000704 return TRUE;
705 }
Barry Mienydd671972010-10-04 16:33:58 +0200706
Barry Mienydd671972010-10-04 16:33:58 +0200707 // Load and instantiate the result driver
Andrey Andreev57bdeb62012-03-05 15:59:16 +0200708 $driver = $this->load_rdriver();
709 $RES = new $driver($this);
Barry Mienydd671972010-10-04 16:33:58 +0200710
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200711 // Is query caching enabled? If so, we'll serialize the
Derek Allard2067d1a2008-11-13 22:59:24 +0000712 // result object and save it to a cache file.
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100713 if ($this->cache_on === TRUE && $this->_cache_init())
Derek Allard2067d1a2008-11-13 22:59:24 +0000714 {
715 // We'll create a new instance of the result object
716 // only without the platform specific driver since
717 // we can't use it with cached data (the query result
718 // resource ID won't be any good once we've cached the
719 // result object, so we'll have to compile the data
720 // and save it)
Andrey Andreev83b2b1c2012-11-13 10:58:38 +0200721 $CR = new CI_DB_result($this);
Derek Allard2067d1a2008-11-13 22:59:24 +0000722 $CR->result_object = $RES->result_object();
723 $CR->result_array = $RES->result_array();
Andrey Andreev24abcb92012-01-05 20:40:15 +0200724 $CR->num_rows = $RES->num_rows();
Barry Mienydd671972010-10-04 16:33:58 +0200725
Derek Allard2067d1a2008-11-13 22:59:24 +0000726 // Reset these since cached objects can not utilize resource IDs.
727 $CR->conn_id = NULL;
728 $CR->result_id = NULL;
729
730 $this->CACHE->write($sql, $CR);
731 }
Barry Mienydd671972010-10-04 16:33:58 +0200732
Derek Allard2067d1a2008-11-13 22:59:24 +0000733 return $RES;
734 }
735
736 // --------------------------------------------------------------------
737
738 /**
739 * Load the result drivers
740 *
Barry Mienydd671972010-10-04 16:33:58 +0200741 * @return string the name of the result class
742 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500743 public function load_rdriver()
Derek Allard2067d1a2008-11-13 22:59:24 +0000744 {
745 $driver = 'CI_DB_'.$this->dbdriver.'_result';
746
vlakofffadb8222013-05-12 10:57:09 +0200747 if ( ! class_exists($driver, FALSE))
Derek Allard2067d1a2008-11-13 22:59:24 +0000748 {
Andrey Andreev7e963512014-02-27 15:43:24 +0200749 require_once(BASEPATH.'database/DB_result.php');
750 require_once(BASEPATH.'database/drivers/'.$this->dbdriver.'/'.$this->dbdriver.'_result.php');
Derek Allard2067d1a2008-11-13 22:59:24 +0000751 }
Barry Mienydd671972010-10-04 16:33:58 +0200752
Derek Allard2067d1a2008-11-13 22:59:24 +0000753 return $driver;
754 }
Barry Mienydd671972010-10-04 16:33:58 +0200755
Derek Allard2067d1a2008-11-13 22:59:24 +0000756 // --------------------------------------------------------------------
757
758 /**
759 * Simple Query
Andrey Andreev4c202602012-03-06 20:34:52 +0200760 * This is a simplified version of the query() function. Internally
Derek Allard2067d1a2008-11-13 22:59:24 +0000761 * we only use it when running transaction commands since they do
762 * not require all the features of the main query() function.
763 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000764 * @param string the sql query
Barry Mienydd671972010-10-04 16:33:58 +0200765 * @return mixed
766 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500767 public function simple_query($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000768 {
769 if ( ! $this->conn_id)
770 {
771 $this->initialize();
772 }
773
774 return $this->_execute($sql);
775 }
Barry Mienydd671972010-10-04 16:33:58 +0200776
Derek Allard2067d1a2008-11-13 22:59:24 +0000777 // --------------------------------------------------------------------
778
779 /**
780 * Disable Transactions
781 * This permits transactions to be disabled at run-time.
782 *
Barry Mienydd671972010-10-04 16:33:58 +0200783 * @return void
784 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500785 public function trans_off()
Derek Allard2067d1a2008-11-13 22:59:24 +0000786 {
787 $this->trans_enabled = FALSE;
788 }
789
790 // --------------------------------------------------------------------
791
792 /**
793 * Enable/disable Transaction Strict Mode
794 * When strict mode is enabled, if you are running multiple groups of
795 * transactions, if one group fails all groups will be rolled back.
796 * If strict mode is disabled, each group is treated autonomously, meaning
797 * a failure of one group will not affect any others
798 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +0300799 * @param bool $mode = TRUE
Barry Mienydd671972010-10-04 16:33:58 +0200800 * @return void
801 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500802 public function trans_strict($mode = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000803 {
804 $this->trans_strict = is_bool($mode) ? $mode : TRUE;
805 }
Barry Mienydd671972010-10-04 16:33:58 +0200806
Derek Allard2067d1a2008-11-13 22:59:24 +0000807 // --------------------------------------------------------------------
808
809 /**
810 * Start Transaction
811 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +0300812 * @param bool $test_mode = FALSE
Barry Mienydd671972010-10-04 16:33:58 +0200813 * @return void
814 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500815 public function trans_start($test_mode = FALSE)
Barry Mienydd671972010-10-04 16:33:58 +0200816 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000817 if ( ! $this->trans_enabled)
818 {
Gabriel Potkány1fb50002015-02-04 01:45:59 +0100819 return;
Derek Allard2067d1a2008-11-13 22:59:24 +0000820 }
821
822 // When transactions are nested we only begin/commit/rollback the outermost ones
823 if ($this->_trans_depth > 0)
824 {
825 $this->_trans_depth += 1;
826 return;
827 }
Barry Mienydd671972010-10-04 16:33:58 +0200828
Derek Allard2067d1a2008-11-13 22:59:24 +0000829 $this->trans_begin($test_mode);
Jacob Terry07fcedf2011-11-22 11:21:36 -0500830 $this->_trans_depth += 1;
Derek Allard2067d1a2008-11-13 22:59:24 +0000831 }
832
833 // --------------------------------------------------------------------
834
835 /**
836 * Complete Transaction
837 *
Barry Mienydd671972010-10-04 16:33:58 +0200838 * @return bool
839 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500840 public function trans_complete()
Derek Allard2067d1a2008-11-13 22:59:24 +0000841 {
842 if ( ! $this->trans_enabled)
843 {
844 return FALSE;
845 }
Barry Mienydd671972010-10-04 16:33:58 +0200846
Derek Allard2067d1a2008-11-13 22:59:24 +0000847 // When transactions are nested we only begin/commit/rollback the outermost ones
848 if ($this->_trans_depth > 1)
849 {
850 $this->_trans_depth -= 1;
851 return TRUE;
852 }
Jacob Terry07fcedf2011-11-22 11:21:36 -0500853 else
854 {
855 $this->_trans_depth = 0;
856 }
Barry Mienydd671972010-10-04 16:33:58 +0200857
Derek Allard2067d1a2008-11-13 22:59:24 +0000858 // The query() function will set this flag to FALSE in the event that a query failed
Katsumi Hondafa99dc62013-04-03 22:47:34 +0900859 if ($this->_trans_status === FALSE OR $this->_trans_failure === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000860 {
861 $this->trans_rollback();
Barry Mienydd671972010-10-04 16:33:58 +0200862
Derek Allard2067d1a2008-11-13 22:59:24 +0000863 // If we are NOT running in strict mode, we will reset
864 // the _trans_status flag so that subsequent groups of transactions
865 // will be permitted.
866 if ($this->trans_strict === FALSE)
867 {
868 $this->_trans_status = TRUE;
869 }
870
871 log_message('debug', 'DB Transaction Failure');
872 return FALSE;
873 }
Barry Mienydd671972010-10-04 16:33:58 +0200874
Derek Allard2067d1a2008-11-13 22:59:24 +0000875 $this->trans_commit();
876 return TRUE;
877 }
878
879 // --------------------------------------------------------------------
880
881 /**
882 * Lets you retrieve the transaction flag to determine if it has failed
883 *
Barry Mienydd671972010-10-04 16:33:58 +0200884 * @return bool
885 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500886 public function trans_status()
Derek Allard2067d1a2008-11-13 22:59:24 +0000887 {
888 return $this->_trans_status;
889 }
890
891 // --------------------------------------------------------------------
892
893 /**
894 * Compile Bindings
895 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000896 * @param string the sql statement
897 * @param array an array of bind data
Barry Mienydd671972010-10-04 16:33:58 +0200898 * @return string
899 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500900 public function compile_binds($sql, $binds)
Derek Allard2067d1a2008-11-13 22:59:24 +0000901 {
Andrey Andreev10cbdf02012-06-13 13:32:30 +0300902 if (empty($binds) OR empty($this->bind_marker) OR strpos($sql, $this->bind_marker) === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000903 {
904 return $sql;
905 }
Andrey Andreev4e9538f2012-06-12 14:16:53 +0300906 elseif ( ! is_array($binds))
Derek Allard2067d1a2008-11-13 22:59:24 +0000907 {
Andrey Andreevaf915ce2012-06-13 19:03:06 +0300908 $binds = array($binds);
Andrey Andreev10cbdf02012-06-13 13:32:30 +0300909 $bind_count = 1;
Derek Allard2067d1a2008-11-13 22:59:24 +0000910 }
Andrey Andreev4e9538f2012-06-12 14:16:53 +0300911 else
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200912 {
Andrey Andreev4e9538f2012-06-12 14:16:53 +0300913 // Make sure we're using numeric keys
914 $binds = array_values($binds);
Andrey Andreev10cbdf02012-06-13 13:32:30 +0300915 $bind_count = count($binds);
Derek Allard2067d1a2008-11-13 22:59:24 +0000916 }
917
Andrey Andreevaf915ce2012-06-13 19:03:06 +0300918 // We'll need the marker length later
919 $ml = strlen($this->bind_marker);
920
Andrey Andreev10cbdf02012-06-13 13:32:30 +0300921 // Make sure not to replace a chunk inside a string that happens to match the bind marker
922 if ($c = preg_match_all("/'[^']*'/i", $sql, $matches))
Derek Allard2067d1a2008-11-13 22:59:24 +0000923 {
Andrey Andreeve4742582012-10-25 13:25:13 +0300924 $c = preg_match_all('/'.preg_quote($this->bind_marker, '/').'/i',
Andrey Andreev10cbdf02012-06-13 13:32:30 +0300925 str_replace($matches[0],
926 str_replace($this->bind_marker, str_repeat(' ', $ml), $matches[0]),
927 $sql, $c),
928 $matches, PREG_OFFSET_CAPTURE);
929
930 // Bind values' count must match the count of markers in the query
931 if ($bind_count !== $c)
932 {
933 return $sql;
934 }
Andrey Andreev10cbdf02012-06-13 13:32:30 +0300935 }
Andrey Andreeve4742582012-10-25 13:25:13 +0300936 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 +0300937 {
Andrey Andreevaf915ce2012-06-13 19:03:06 +0300938 return $sql;
Derek Allard2067d1a2008-11-13 22:59:24 +0000939 }
940
Andrey Andreevaf915ce2012-06-13 19:03:06 +0300941 do
942 {
943 $c--;
clawoo4a4f5502014-10-20 15:28:08 +0300944 $escaped_value = $this->escape($binds[$c]);
945 if (is_array($escaped_value))
946 {
947 $escaped_value = '('.implode(',', $escaped_value).')';
948 }
949 $sql = substr_replace($sql, $escaped_value, $matches[0][$c][1], $ml);
Andrey Andreevaf915ce2012-06-13 19:03:06 +0300950 }
951 while ($c !== 0);
952
Andrey Andreev4e9538f2012-06-12 14:16:53 +0300953 return $sql;
Derek Allard2067d1a2008-11-13 22:59:24 +0000954 }
Barry Mienydd671972010-10-04 16:33:58 +0200955
Derek Allard2067d1a2008-11-13 22:59:24 +0000956 // --------------------------------------------------------------------
957
958 /**
959 * Determines if a query is a "write" type.
960 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000961 * @param string An SQL query string
Andrey Andreev67f71a42012-03-01 16:18:42 +0200962 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200963 */
Andrey Andreev67f71a42012-03-01 16:18:42 +0200964 public function is_write_type($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000965 {
Andrey Andreevd98c4a32014-01-07 17:33:32 +0200966 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 +0000967 }
Barry Mienydd671972010-10-04 16:33:58 +0200968
Derek Allard2067d1a2008-11-13 22:59:24 +0000969 // --------------------------------------------------------------------
970
971 /**
972 * Calculate the aggregate query elapsed time
973 *
Andrey Andreev4c202602012-03-06 20:34:52 +0200974 * @param int The number of decimal places
James L Parry78301732014-12-16 02:14:52 -0800975 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200976 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500977 public function elapsed_time($decimals = 6)
Derek Allard2067d1a2008-11-13 22:59:24 +0000978 {
979 return number_format($this->benchmark, $decimals);
980 }
Barry Mienydd671972010-10-04 16:33:58 +0200981
Derek Allard2067d1a2008-11-13 22:59:24 +0000982 // --------------------------------------------------------------------
983
984 /**
985 * Returns the total number of queries
986 *
Andrey Andreev4c202602012-03-06 20:34:52 +0200987 * @return int
Barry Mienydd671972010-10-04 16:33:58 +0200988 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500989 public function total_queries()
Derek Allard2067d1a2008-11-13 22:59:24 +0000990 {
991 return $this->query_count;
992 }
Barry Mienydd671972010-10-04 16:33:58 +0200993
Derek Allard2067d1a2008-11-13 22:59:24 +0000994 // --------------------------------------------------------------------
995
996 /**
997 * Returns the last query that was executed
998 *
Andrey Andreev4c202602012-03-06 20:34:52 +0200999 * @return string
Barry Mienydd671972010-10-04 16:33:58 +02001000 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001001 public function last_query()
Derek Allard2067d1a2008-11-13 22:59:24 +00001002 {
1003 return end($this->queries);
1004 }
1005
1006 // --------------------------------------------------------------------
1007
1008 /**
1009 * "Smart" Escape String
1010 *
1011 * Escapes data based on type
1012 * Sets boolean and null types
1013 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001014 * @param string
Barry Mienydd671972010-10-04 16:33:58 +02001015 * @return mixed
1016 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001017 public function escape($str)
Barry Mienydd671972010-10-04 16:33:58 +02001018 {
clawooa779c482014-10-18 14:47:04 +03001019 if (is_array($str))
1020 {
1021 $str = array_map(array(&$this, 'escape'), $str);
clawoo4a4f5502014-10-20 15:28:08 +03001022 return $str;
clawooa779c482014-10-18 14:47:04 +03001023 }
1024 elseif (is_string($str) OR (is_object($str) && method_exists($str, '__toString')))
Derek Allard2067d1a2008-11-13 22:59:24 +00001025 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001026 return "'".$this->escape_str($str)."'";
Derek Jonesa377bdd2009-02-11 18:55:24 +00001027 }
1028 elseif (is_bool($str))
1029 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001030 return ($str === FALSE) ? 0 : 1;
Derek Jonesa377bdd2009-02-11 18:55:24 +00001031 }
vlakoff1228fe22013-01-14 01:30:09 +01001032 elseif ($str === NULL)
Derek Jonesa377bdd2009-02-11 18:55:24 +00001033 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001034 return 'NULL';
Derek Jonesa377bdd2009-02-11 18:55:24 +00001035 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001036
1037 return $str;
1038 }
1039
1040 // --------------------------------------------------------------------
Derek Jonese7792202010-03-02 17:24:46 -06001041
Derek Jonese4ed5832009-02-20 21:44:59 +00001042 /**
Andrey Andreev0b6a4922013-01-10 16:53:44 +02001043 * Escape String
1044 *
Andrey Andreev0d3fde22015-01-05 16:56:41 +02001045 * @param string|string[] $str Input string
Andrey Andreev0b6a4922013-01-10 16:53:44 +02001046 * @param bool $like Whether or not the string will be used in a LIKE condition
1047 * @return string
1048 */
1049 public function escape_str($str, $like = FALSE)
1050 {
1051 if (is_array($str))
1052 {
1053 foreach ($str as $key => $val)
1054 {
1055 $str[$key] = $this->escape_str($val, $like);
1056 }
1057
1058 return $str;
1059 }
1060
1061 $str = $this->_escape_str($str);
1062
1063 // escape LIKE condition wildcards
1064 if ($like === TRUE)
1065 {
Andrey Andreev7e963512014-02-27 15:43:24 +02001066 return str_replace(
1067 array($this->_like_escape_chr, '%', '_'),
1068 array($this->_like_escape_chr.$this->_like_escape_chr, $this->_like_escape_chr.'%', $this->_like_escape_chr.'_'),
1069 $str
1070 );
Andrey Andreev0b6a4922013-01-10 16:53:44 +02001071 }
1072
1073 return $str;
1074 }
1075
1076 // --------------------------------------------------------------------
1077
1078 /**
Derek Jonesbdc7fb92009-02-20 21:55:10 +00001079 * Escape LIKE String
Derek Jonese4ed5832009-02-20 21:44:59 +00001080 *
1081 * Calls the individual driver for platform
1082 * specific escaping for LIKE conditions
Barry Mienydd671972010-10-04 16:33:58 +02001083 *
Andrey Andreev0b6a4922013-01-10 16:53:44 +02001084 * @param string|string[]
Derek Jonese4ed5832009-02-20 21:44:59 +00001085 * @return mixed
1086 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001087 public function escape_like_str($str)
Barry Mienydd671972010-10-04 16:33:58 +02001088 {
1089 return $this->escape_str($str, TRUE);
Derek Jonese4ed5832009-02-20 21:44:59 +00001090 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001091
Derek Jonese4ed5832009-02-20 21:44:59 +00001092 // --------------------------------------------------------------------
Derek Jonese7792202010-03-02 17:24:46 -06001093
Derek Allard2067d1a2008-11-13 22:59:24 +00001094 /**
Andrey Andreev0b6a4922013-01-10 16:53:44 +02001095 * Platform-dependant string escape
1096 *
1097 * @param string
1098 * @return string
1099 */
1100 protected function _escape_str($str)
1101 {
1102 return str_replace("'", "''", remove_invisible_characters($str));
1103 }
1104
1105 // --------------------------------------------------------------------
1106
1107 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001108 * Primary
1109 *
Andrey Andreev4c202602012-03-06 20:34:52 +02001110 * Retrieves the primary key. It assumes that the row in the first
Derek Allard2067d1a2008-11-13 22:59:24 +00001111 * position is the primary key
1112 *
Andrey Andreev0d3fde22015-01-05 16:56:41 +02001113 * @param string $table Table name
1114 * @return string
Barry Mienydd671972010-10-04 16:33:58 +02001115 */
Andrey Andreev0d3fde22015-01-05 16:56:41 +02001116 public function primary($table)
Barry Mienydd671972010-10-04 16:33:58 +02001117 {
Derek Allard2067d1a2008-11-13 22:59:24 +00001118 $fields = $this->list_fields($table);
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001119 return is_array($fields) ? current($fields) : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001120 }
1121
1122 // --------------------------------------------------------------------
1123
1124 /**
Andrey Andreev16bb9bd2012-05-26 18:21:14 +03001125 * "Count All" query
1126 *
1127 * Generates a platform-specific query string that counts all records in
1128 * the specified database
1129 *
1130 * @param string
1131 * @return int
1132 */
1133 public function count_all($table = '')
1134 {
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001135 if ($table === '')
Andrey Andreev16bb9bd2012-05-26 18:21:14 +03001136 {
1137 return 0;
1138 }
1139
1140 $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 +01001141 if ($query->num_rows() === 0)
Andrey Andreev16bb9bd2012-05-26 18:21:14 +03001142 {
1143 return 0;
1144 }
1145
1146 $query = $query->row();
1147 $this->_reset_select();
1148 return (int) $query->numrows;
1149 }
1150
1151 // --------------------------------------------------------------------
1152
1153 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001154 * Returns an array of table names
1155 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001156 * @param string $constrain_by_prefix = FALSE
Andrey Andreev0d3fde22015-01-05 16:56:41 +02001157 * @return array
Barry Mienydd671972010-10-04 16:33:58 +02001158 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001159 public function list_tables($constrain_by_prefix = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001160 {
1161 // Is there a cached result?
1162 if (isset($this->data_cache['table_names']))
1163 {
1164 return $this->data_cache['table_names'];
1165 }
Barry Mienydd671972010-10-04 16:33:58 +02001166
Derek Allard2067d1a2008-11-13 22:59:24 +00001167 if (FALSE === ($sql = $this->_list_tables($constrain_by_prefix)))
1168 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001169 return ($this->db_debug) ? $this->display_error('db_unsupported_function') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001170 }
1171
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001172 $this->data_cache['table_names'] = array();
Derek Allard2067d1a2008-11-13 22:59:24 +00001173 $query = $this->query($sql);
Barry Mienydd671972010-10-04 16:33:58 +02001174
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001175 foreach ($query->result_array() as $row)
Derek Allard2067d1a2008-11-13 22:59:24 +00001176 {
Andrey Andreev12567e82012-01-25 22:50:33 +02001177 // Do we know from which column to get the table name?
1178 if ( ! isset($key))
Derek Allard2067d1a2008-11-13 22:59:24 +00001179 {
Andrey Andreev6781a5f2012-03-28 14:50:51 +03001180 if (isset($row['table_name']))
Andrey Andreev12567e82012-01-25 22:50:33 +02001181 {
1182 $key = 'table_name';
1183 }
Andrey Andreev6781a5f2012-03-28 14:50:51 +03001184 elseif (isset($row['TABLE_NAME']))
Andrey Andreev12567e82012-01-25 22:50:33 +02001185 {
1186 $key = 'TABLE_NAME';
1187 }
1188 else
1189 {
1190 /* We have no other choice but to just get the first element's key.
vlakoff3a3d5f62013-10-17 22:22:16 +02001191 * Due to array_shift() accepting its argument by reference, if
Andrey Andreev12567e82012-01-25 22:50:33 +02001192 * E_STRICT is on, this would trigger a warning. So we'll have to
1193 * assign it first.
1194 */
1195 $key = array_keys($row);
1196 $key = array_shift($key);
1197 }
Taufan Aditya18209332012-02-09 16:07:27 +07001198 }
1199
Andrey Andreev12567e82012-01-25 22:50:33 +02001200 $this->data_cache['table_names'][] = $row[$key];
Derek Allard2067d1a2008-11-13 22:59:24 +00001201 }
1202
Derek Allard2067d1a2008-11-13 22:59:24 +00001203 return $this->data_cache['table_names'];
1204 }
Barry Mienydd671972010-10-04 16:33:58 +02001205
Derek Allard2067d1a2008-11-13 22:59:24 +00001206 // --------------------------------------------------------------------
1207
1208 /**
1209 * Determine if a particular table exists
Timothy Warrene45518d2012-03-06 07:38:00 -05001210 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001211 * @param string $table_name
Andrey Andreev4c202602012-03-06 20:34:52 +02001212 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +00001213 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001214 public function table_exists($table_name)
Barry Mienydd671972010-10-04 16:33:58 +02001215 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +02001216 return in_array($this->protect_identifiers($table_name, TRUE, FALSE, FALSE), $this->list_tables());
Derek Allard2067d1a2008-11-13 22:59:24 +00001217 }
Barry Mienydd671972010-10-04 16:33:58 +02001218
Derek Allard2067d1a2008-11-13 22:59:24 +00001219 // --------------------------------------------------------------------
1220
1221 /**
Andrey Andreev75546112012-07-05 11:01:29 +03001222 * Fetch Field Names
Derek Allard2067d1a2008-11-13 22:59:24 +00001223 *
Andrey Andreev0f850902015-04-29 12:33:11 +03001224 * @param string $table Table name
Andrey Andreev0d3fde22015-01-05 16:56:41 +02001225 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +00001226 */
Andrey Andreev358b0882015-01-05 21:00:18 +02001227 public function list_fields($table)
Derek Allard2067d1a2008-11-13 22:59:24 +00001228 {
1229 // Is there a cached result?
1230 if (isset($this->data_cache['field_names'][$table]))
1231 {
1232 return $this->data_cache['field_names'][$table];
1233 }
Barry Mienydd671972010-10-04 16:33:58 +02001234
Greg Aker1edde302010-01-26 00:17:01 +00001235 if (FALSE === ($sql = $this->_list_columns($table)))
Derek Allard2067d1a2008-11-13 22:59:24 +00001236 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001237 return ($this->db_debug) ? $this->display_error('db_unsupported_function') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001238 }
Barry Mienydd671972010-10-04 16:33:58 +02001239
Derek Allard2067d1a2008-11-13 22:59:24 +00001240 $query = $this->query($sql);
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001241 $this->data_cache['field_names'][$table] = array();
Barry Mienydd671972010-10-04 16:33:58 +02001242
Pascal Krietec3a4a8d2011-02-14 13:40:08 -05001243 foreach ($query->result_array() as $row)
Derek Allard2067d1a2008-11-13 22:59:24 +00001244 {
Andrey Andreev12567e82012-01-25 22:50:33 +02001245 // Do we know from where to get the column's name?
1246 if ( ! isset($key))
Derek Allard2067d1a2008-11-13 22:59:24 +00001247 {
Andrey Andreev6781a5f2012-03-28 14:50:51 +03001248 if (isset($row['column_name']))
Andrey Andreev12567e82012-01-25 22:50:33 +02001249 {
1250 $key = 'column_name';
1251 }
Andrey Andreev6781a5f2012-03-28 14:50:51 +03001252 elseif (isset($row['COLUMN_NAME']))
Andrey Andreev12567e82012-01-25 22:50:33 +02001253 {
1254 $key = 'COLUMN_NAME';
1255 }
1256 else
1257 {
RJ garcia395e2df2013-03-21 10:48:24 -05001258 // We have no other choice but to just get the first element's key.
1259 $key = key($row);
Andrey Andreev12567e82012-01-25 22:50:33 +02001260 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001261 }
Andrey Andreev12567e82012-01-25 22:50:33 +02001262
1263 $this->data_cache['field_names'][$table][] = $row[$key];
Derek Allard2067d1a2008-11-13 22:59:24 +00001264 }
Barry Mienydd671972010-10-04 16:33:58 +02001265
Derek Allard2067d1a2008-11-13 22:59:24 +00001266 return $this->data_cache['field_names'][$table];
1267 }
1268
1269 // --------------------------------------------------------------------
1270
1271 /**
1272 * Determine if a particular field exists
Timothy Warrene45518d2012-03-06 07:38:00 -05001273 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001274 * @param string
1275 * @param string
Andrey Andreev4c202602012-03-06 20:34:52 +02001276 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +00001277 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001278 public function field_exists($field_name, $table_name)
Barry Mienydd671972010-10-04 16:33:58 +02001279 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001280 return in_array($field_name, $this->list_fields($table_name));
Derek Allard2067d1a2008-11-13 22:59:24 +00001281 }
Barry Mienydd671972010-10-04 16:33:58 +02001282
Derek Allard2067d1a2008-11-13 22:59:24 +00001283 // --------------------------------------------------------------------
1284
1285 /**
1286 * Returns an object with field data
1287 *
Andrey Andreev0d3fde22015-01-05 16:56:41 +02001288 * @param string $table the table name
1289 * @return array
Barry Mienydd671972010-10-04 16:33:58 +02001290 */
Andrey Andreev0d3fde22015-01-05 16:56:41 +02001291 public function field_data($table)
Derek Allard2067d1a2008-11-13 22:59:24 +00001292 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +02001293 $query = $this->query($this->_field_data($this->protect_identifiers($table, TRUE, NULL, FALSE)));
Andrey Andreev0d3fde22015-01-05 16:56:41 +02001294 return ($query) ? $query->field_data() : FALSE;
Barry Mienydd671972010-10-04 16:33:58 +02001295 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001296
1297 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001298
Derek Allard2067d1a2008-11-13 22:59:24 +00001299 /**
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001300 * Escape the SQL Identifiers
1301 *
1302 * This function escapes column and table names
1303 *
Andrey Andreev9637b402012-06-08 15:39:24 +03001304 * @param mixed
1305 * @return mixed
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001306 */
1307 public function escape_identifiers($item)
1308 {
Andrey Andreeva7ddd2d2012-11-06 11:53:45 +02001309 if ($this->_escape_char === '' OR empty($item) OR in_array($item, $this->_reserved_identifiers))
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001310 {
1311 return $item;
1312 }
Andrey Andreev9637b402012-06-08 15:39:24 +03001313 elseif (is_array($item))
1314 {
1315 foreach ($item as $key => $value)
1316 {
1317 $item[$key] = $this->escape_identifiers($value);
1318 }
1319
1320 return $item;
1321 }
Andrey Andreev49aa45b2012-07-06 16:22:21 +03001322 // Avoid breaking functions and literal values inside queries
Andrey Andreev9859cb02012-07-13 13:07:58 +03001323 elseif (ctype_digit($item) OR $item[0] === "'" OR ($this->_escape_char !== '"' && $item[0] === '"') OR strpos($item, '(') !== FALSE)
Andrey Andreev7db0f592012-06-28 17:54:27 +03001324 {
1325 return $item;
1326 }
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001327
Andrey Andreev082ee2b2012-06-08 15:26:34 +03001328 static $preg_ec = array();
1329
1330 if (empty($preg_ec))
1331 {
1332 if (is_array($this->_escape_char))
1333 {
Andrey Andreev2636c1c2012-07-02 14:53:39 +03001334 $preg_ec = array(
Andrey Andreev7e963512014-02-27 15:43:24 +02001335 preg_quote($this->_escape_char[0], '/'),
1336 preg_quote($this->_escape_char[1], '/'),
1337 $this->_escape_char[0],
1338 $this->_escape_char[1]
1339 );
Andrey Andreev082ee2b2012-06-08 15:26:34 +03001340 }
1341 else
1342 {
Andrey Andreeve4742582012-10-25 13:25:13 +03001343 $preg_ec[0] = $preg_ec[1] = preg_quote($this->_escape_char, '/');
Andrey Andreev2636c1c2012-07-02 14:53:39 +03001344 $preg_ec[2] = $preg_ec[3] = $this->_escape_char;
Andrey Andreev082ee2b2012-06-08 15:26:34 +03001345 }
1346 }
1347
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001348 foreach ($this->_reserved_identifiers as $id)
1349 {
1350 if (strpos($item, '.'.$id) !== FALSE)
1351 {
Andrey Andreev2636c1c2012-07-02 14:53:39 +03001352 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 +03001353 }
1354 }
1355
Andrey Andreev2636c1c2012-07-02 14:53:39 +03001356 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 +03001357 }
1358
1359 // --------------------------------------------------------------------
1360
1361 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001362 * Generate an insert string
1363 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001364 * @param string the table upon which the query will be performed
1365 * @param array an associative array data of key/values
Barry Mienydd671972010-10-04 16:33:58 +02001366 * @return string
1367 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001368 public function insert_string($table, $data)
Derek Allard2067d1a2008-11-13 22:59:24 +00001369 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001370 $fields = $values = array();
Barry Mienydd671972010-10-04 16:33:58 +02001371
Pascal Krietec3a4a8d2011-02-14 13:40:08 -05001372 foreach ($data as $key => $val)
Derek Allard2067d1a2008-11-13 22:59:24 +00001373 {
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001374 $fields[] = $this->escape_identifiers($key);
Derek Allard2067d1a2008-11-13 22:59:24 +00001375 $values[] = $this->escape($val);
1376 }
Barry Mienydd671972010-10-04 16:33:58 +02001377
Andrey Andreev032e7ea2012-03-06 19:48:35 +02001378 return $this->_insert($this->protect_identifiers($table, TRUE, NULL, FALSE), $fields, $values);
Barry Mienydd671972010-10-04 16:33:58 +02001379 }
1380
Derek Allard2067d1a2008-11-13 22:59:24 +00001381 // --------------------------------------------------------------------
1382
1383 /**
Andrey Andreev75546112012-07-05 11:01:29 +03001384 * Insert statement
1385 *
1386 * Generates a platform-specific insert string from the supplied data
1387 *
1388 * @param string the table name
1389 * @param array the insert keys
1390 * @param array the insert values
1391 * @return string
1392 */
1393 protected function _insert($table, $keys, $values)
1394 {
1395 return 'INSERT INTO '.$table.' ('.implode(', ', $keys).') VALUES ('.implode(', ', $values).')';
1396 }
1397
1398 // --------------------------------------------------------------------
1399
1400 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001401 * Generate an update string
1402 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001403 * @param string the table upon which the query will be performed
1404 * @param array an associative array data of key/values
1405 * @param mixed the "where" statement
Barry Mienydd671972010-10-04 16:33:58 +02001406 * @return string
1407 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001408 public function update_string($table, $data, $where)
Derek Allard2067d1a2008-11-13 22:59:24 +00001409 {
Andrey Andreev87f4dc22012-11-01 01:11:22 +02001410 if (empty($where))
Derek Allard2067d1a2008-11-13 22:59:24 +00001411 {
Andrey Andreev4c202602012-03-06 20:34:52 +02001412 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001413 }
Barry Mienydd671972010-10-04 16:33:58 +02001414
Andrey Andreev87f4dc22012-11-01 01:11:22 +02001415 $this->where($where);
1416
Derek Allard2067d1a2008-11-13 22:59:24 +00001417 $fields = array();
Pascal Krietec3a4a8d2011-02-14 13:40:08 -05001418 foreach ($data as $key => $val)
Derek Allard2067d1a2008-11-13 22:59:24 +00001419 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +02001420 $fields[$this->protect_identifiers($key)] = $this->escape($val);
Derek Allard2067d1a2008-11-13 22:59:24 +00001421 }
1422
Andrey Andreev79f888b2013-08-06 13:59:23 +03001423 $sql = $this->_update($this->protect_identifiers($table, TRUE, NULL, FALSE), $fields);
1424 $this->_reset_write();
1425 return $sql;
Barry Mienydd671972010-10-04 16:33:58 +02001426 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001427
1428 // --------------------------------------------------------------------
1429
1430 /**
Andrey Andreev75546112012-07-05 11:01:29 +03001431 * Update statement
1432 *
1433 * Generates a platform-specific update string from the supplied data
1434 *
1435 * @param string the table name
Andrey Andreev822317b2012-07-19 16:00:32 +03001436 * @param array the update data
Andrey Andreev75546112012-07-05 11:01:29 +03001437 * @return string
1438 */
Andrey Andreevb0478652012-07-18 15:34:46 +03001439 protected function _update($table, $values)
Andrey Andreev75546112012-07-05 11:01:29 +03001440 {
1441 foreach ($values as $key => $val)
1442 {
1443 $valstr[] = $key.' = '.$val;
1444 }
1445
Andrey Andreev75546112012-07-05 11:01:29 +03001446 return 'UPDATE '.$table.' SET '.implode(', ', $valstr)
Andrey Andreev2d486232012-07-19 14:46:51 +03001447 .$this->_compile_wh('qb_where')
1448 .$this->_compile_order_by()
Andrey Andreevc9b924c2012-07-19 13:06:02 +03001449 .($this->qb_limit ? ' LIMIT '.$this->qb_limit : '');
Andrey Andreev75546112012-07-05 11:01:29 +03001450 }
1451
1452 // --------------------------------------------------------------------
1453
1454 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001455 * Tests whether the string has an SQL operator
1456 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001457 * @param string
1458 * @return bool
1459 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001460 protected function _has_operator($str)
Derek Allard2067d1a2008-11-13 22:59:24 +00001461 {
Andrey Andreev5078eb52014-12-02 01:11:54 +02001462 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 +00001463 }
1464
1465 // --------------------------------------------------------------------
1466
1467 /**
Andrey Andreev929fd2d2012-06-17 17:29:57 +03001468 * Returns the SQL string operator
1469 *
1470 * @param string
1471 * @return string
1472 */
1473 protected function _get_operator($str)
1474 {
Andrey Andreeve8be24b2012-07-19 16:11:17 +03001475 static $_operators;
Andrey Andreev6e704752012-07-18 00:46:33 +03001476
Andrey Andreeve8be24b2012-07-19 16:11:17 +03001477 if (empty($_operators))
Andrey Andreevb0478652012-07-18 15:34:46 +03001478 {
Andrey Andreeve8be24b2012-07-19 16:11:17 +03001479 $_les = ($this->_like_escape_str !== '')
Andrey Andreeve4742582012-10-25 13:25:13 +03001480 ? '\s+'.preg_quote(trim(sprintf($this->_like_escape_str, $this->_like_escape_chr)), '/')
Andrey Andreeve8be24b2012-07-19 16:11:17 +03001481 : '';
Andrey Andreeve8be24b2012-07-19 16:11:17 +03001482 $_operators = array(
1483 '\s*(?:<|>|!)?=\s*', // =, <=, >=, !=
1484 '\s*<>?\s*', // <, <>
1485 '\s*>\s*', // >
Andrey Andreev5078eb52014-12-02 01:11:54 +02001486 '\s+IS NULL', // IS NULL
1487 '\s+IS NOT NULL', // IS NOT NULL
Tufan Barış YILDIRIM30893b92013-12-19 21:30:56 +02001488 '\s+EXISTS\s*\([^\)]+\)', // EXISTS(sql)
Andrey Andreev295cfa92013-12-20 11:48:38 +02001489 '\s+NOT EXISTS\s*\([^\)]+\)', // NOT EXISTS(sql)
Andrey Andreeve8be24b2012-07-19 16:11:17 +03001490 '\s+BETWEEN\s+\S+\s+AND\s+\S+', // BETWEEN value AND value
1491 '\s+IN\s*\([^\)]+\)', // IN(list)
1492 '\s+NOT IN\s*\([^\)]+\)', // NOT IN (list)
1493 '\s+LIKE\s+\S+'.$_les, // LIKE 'expr'[ ESCAPE '%s']
1494 '\s+NOT LIKE\s+\S+'.$_les // NOT LIKE 'expr'[ ESCAPE '%s']
1495 );
1496
1497 }
Andrey Andreevb0478652012-07-18 15:34:46 +03001498
Andrey Andreev6e704752012-07-18 00:46:33 +03001499 return preg_match('/'.implode('|', $_operators).'/i', $str, $match)
1500 ? $match[0] : FALSE;
Andrey Andreev929fd2d2012-06-17 17:29:57 +03001501 }
1502
1503 // --------------------------------------------------------------------
1504
1505 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001506 * Enables a native PHP function to be run, using a platform agnostic wrapper.
1507 *
Andrey Andreevae85eb42012-11-02 01:42:31 +02001508 * @param string $function Function name
Barry Mienydd671972010-10-04 16:33:58 +02001509 * @return mixed
1510 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001511 public function call_function($function)
Derek Allard2067d1a2008-11-13 22:59:24 +00001512 {
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001513 $driver = ($this->dbdriver === 'postgre') ? 'pg_' : $this->dbdriver.'_';
Barry Mienydd671972010-10-04 16:33:58 +02001514
Derek Allard2067d1a2008-11-13 22:59:24 +00001515 if (FALSE === strpos($driver, $function))
1516 {
1517 $function = $driver.$function;
1518 }
Barry Mienydd671972010-10-04 16:33:58 +02001519
Derek Allard2067d1a2008-11-13 22:59:24 +00001520 if ( ! function_exists($function))
1521 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001522 return ($this->db_debug) ? $this->display_error('db_unsupported_function') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001523 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001524
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001525 return (func_num_args() > 1)
Kakyshaa3f91b92013-12-14 05:23:23 +04001526 ? call_user_func_array($function, array_slice(func_get_args(), 1))
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001527 : call_user_func($function);
Derek Allard2067d1a2008-11-13 22:59:24 +00001528 }
1529
1530 // --------------------------------------------------------------------
1531
1532 /**
1533 * Set Cache Directory Path
1534 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001535 * @param string the path to the cache directory
1536 * @return void
Barry Mienydd671972010-10-04 16:33:58 +02001537 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001538 public function cache_set_path($path = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001539 {
1540 $this->cachedir = $path;
1541 }
1542
1543 // --------------------------------------------------------------------
1544
1545 /**
1546 * Enable Query Caching
1547 *
Andrey Andreev4c202602012-03-06 20:34:52 +02001548 * @return bool cache_on value
Barry Mienydd671972010-10-04 16:33:58 +02001549 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001550 public function cache_on()
Derek Allard2067d1a2008-11-13 22:59:24 +00001551 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001552 return $this->cache_on = TRUE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001553 }
1554
1555 // --------------------------------------------------------------------
1556
1557 /**
1558 * Disable Query Caching
1559 *
Andrey Andreev4c202602012-03-06 20:34:52 +02001560 * @return bool cache_on value
Barry Mienydd671972010-10-04 16:33:58 +02001561 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001562 public function cache_off()
Derek Allard2067d1a2008-11-13 22:59:24 +00001563 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001564 return $this->cache_on = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001565 }
Barry Mienydd671972010-10-04 16:33:58 +02001566
Derek Allard2067d1a2008-11-13 22:59:24 +00001567 // --------------------------------------------------------------------
1568
1569 /**
1570 * Delete the cache files associated with a particular URI
1571 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001572 * @param string $segment_one = ''
1573 * @param string $segment_two = ''
Andrey Andreev4c202602012-03-06 20:34:52 +02001574 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +02001575 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001576 public function cache_delete($segment_one = '', $segment_two = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001577 {
Andrey Andreev7e963512014-02-27 15:43:24 +02001578 return $this->_cache_init()
Andrey Andreev043f2602012-03-06 20:16:42 +02001579 ? $this->CACHE->delete($segment_one, $segment_two)
1580 : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001581 }
1582
1583 // --------------------------------------------------------------------
1584
1585 /**
1586 * Delete All cache files
1587 *
Andrey Andreev4c202602012-03-06 20:34:52 +02001588 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +02001589 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001590 public function cache_delete_all()
Derek Allard2067d1a2008-11-13 22:59:24 +00001591 {
Andrey Andreev7e963512014-02-27 15:43:24 +02001592 return $this->_cache_init()
Andrey Andreev043f2602012-03-06 20:16:42 +02001593 ? $this->CACHE->delete_all()
1594 : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001595 }
1596
1597 // --------------------------------------------------------------------
1598
1599 /**
1600 * Initialize the Cache Class
1601 *
Andrey Andreev4c202602012-03-06 20:34:52 +02001602 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +02001603 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001604 protected function _cache_init()
Derek Allard2067d1a2008-11-13 22:59:24 +00001605 {
Andrey Andreev58e1c002014-02-26 18:51:18 +02001606 if ( ! class_exists('CI_DB_Cache', FALSE))
Derek Allard2067d1a2008-11-13 22:59:24 +00001607 {
Andrey Andreev58e1c002014-02-26 18:51:18 +02001608 require_once(BASEPATH.'database/DB_cache.php');
Derek Allard2067d1a2008-11-13 22:59:24 +00001609 }
Andrey Andreev58e1c002014-02-26 18:51:18 +02001610 elseif (is_object($this->CACHE))
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001611 {
Andrey Andreev58e1c002014-02-26 18:51:18 +02001612 return TRUE;
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001613 }
Derek Allarde37ab382009-02-03 16:13:57 +00001614
Derek Allard2067d1a2008-11-13 22:59:24 +00001615 $this->CACHE = new CI_DB_Cache($this); // pass db object to support multiple db connections and returned db objects
1616 return TRUE;
1617 }
1618
1619 // --------------------------------------------------------------------
1620
1621 /**
1622 * Close DB Connection
1623 *
Barry Mienydd671972010-10-04 16:33:58 +02001624 * @return void
1625 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001626 public function close()
Derek Allard2067d1a2008-11-13 22:59:24 +00001627 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001628 if ($this->conn_id)
Derek Allard2067d1a2008-11-13 22:59:24 +00001629 {
Andrey Andreev79922c02012-05-23 12:27:17 +03001630 $this->_close();
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001631 $this->conn_id = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001632 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001633 }
Barry Mienydd671972010-10-04 16:33:58 +02001634
Derek Allard2067d1a2008-11-13 22:59:24 +00001635 // --------------------------------------------------------------------
1636
1637 /**
Andrey Andreev79922c02012-05-23 12:27:17 +03001638 * Close DB Connection
1639 *
Claudio Galdiolob83a3d22015-01-29 11:42:50 -05001640 * This method would be overridden by most of the drivers.
Andrey Andreev79922c02012-05-23 12:27:17 +03001641 *
1642 * @return void
1643 */
1644 protected function _close()
1645 {
1646 $this->conn_id = FALSE;
1647 }
1648
1649 // --------------------------------------------------------------------
1650
1651 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001652 * Display an error message
1653 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001654 * @param string the error message
1655 * @param string any "swap" values
Andrey Andreev4c202602012-03-06 20:34:52 +02001656 * @param bool whether to localize the message
vlakoff52301c72013-03-29 14:23:34 +01001657 * @return string sends the application/views/errors/error_db.php template
Barry Mienydd671972010-10-04 16:33:58 +02001658 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001659 public function display_error($error = '', $swap = '', $native = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001660 {
Derek Jonese7792202010-03-02 17:24:46 -06001661 $LANG =& load_class('Lang', 'core');
Derek Allard2067d1a2008-11-13 22:59:24 +00001662 $LANG->load('db');
1663
1664 $heading = $LANG->line('db_error_heading');
1665
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001666 if ($native === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001667 {
Andrey Andreev85a99cc2011-09-24 17:17:37 +03001668 $message = (array) $error;
Derek Allard2067d1a2008-11-13 22:59:24 +00001669 }
1670 else
1671 {
Andrey Andreev1194ad72012-10-05 17:05:46 +03001672 $message = is_array($error) ? $error : array(str_replace('%s', $swap, $LANG->line($error)));
Derek Allard2067d1a2008-11-13 22:59:24 +00001673 }
Barry Mienydd671972010-10-04 16:33:58 +02001674
Pascal Kriete60f8c392010-08-25 18:03:28 +02001675 // Find the most likely culprit of the error by going through
1676 // the backtrace until the source file is no longer in the
1677 // database folder.
Pascal Kriete60f8c392010-08-25 18:03:28 +02001678 $trace = debug_backtrace();
Pascal Krietec3a4a8d2011-02-14 13:40:08 -05001679 foreach ($trace as $call)
Pascal Kriete60f8c392010-08-25 18:03:28 +02001680 {
Andrey Andreev342bb7e2012-11-20 23:17:28 +02001681 if (isset($call['file'], $call['class']))
Andrey Andreev1194ad72012-10-05 17:05:46 +03001682 {
Andrey Andreev342bb7e2012-11-20 23:17:28 +02001683 // We'll need this on Windows, as APPPATH and BASEPATH will always use forward slashes
1684 if (DIRECTORY_SEPARATOR !== '/')
1685 {
1686 $call['file'] = str_replace('\\', '/', $call['file']);
1687 }
Andrey Andreev1194ad72012-10-05 17:05:46 +03001688
Andrey Andreev342bb7e2012-11-20 23:17:28 +02001689 if (strpos($call['file'], BASEPATH.'database') === FALSE && strpos($call['class'], 'Loader') === FALSE)
1690 {
1691 // Found it - use a relative path for safety
1692 $message[] = 'Filename: '.str_replace(array(APPPATH, BASEPATH), '', $call['file']);
1693 $message[] = 'Line Number: '.$call['line'];
1694 break;
1695 }
Pascal Kriete60f8c392010-08-25 18:03:28 +02001696 }
1697 }
Barry Mienydd671972010-10-04 16:33:58 +02001698
Derek Jonese7792202010-03-02 17:24:46 -06001699 $error =& load_class('Exceptions', 'core');
Derek Allard2067d1a2008-11-13 22:59:24 +00001700 echo $error->show_error($heading, $message, 'error_db');
Andrey Andreev7cf682a2014-03-13 14:55:45 +02001701 exit(8); // EXIT_DATABASE
Derek Allard2067d1a2008-11-13 22:59:24 +00001702 }
1703
1704 // --------------------------------------------------------------------
1705
1706 /**
1707 * Protect Identifiers
1708 *
Jamie Rumbelow7efad202012-02-19 12:37:00 +00001709 * This function is used extensively by the Query Builder class, and by
Barry Mienydd671972010-10-04 16:33:58 +02001710 * a couple functions in this class.
Derek Allard2067d1a2008-11-13 22:59:24 +00001711 * It takes a column or table name (optionally with an alias) and inserts
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001712 * the table prefix onto it. Some logic is necessary in order to deal with
Andrey Andreev4c202602012-03-06 20:34:52 +02001713 * column names that include the path. Consider a query like this:
Derek Allard2067d1a2008-11-13 22:59:24 +00001714 *
1715 * SELECT * FROM hostname.database.table.column AS c FROM hostname.database.table
1716 *
1717 * Or a query with aliasing:
1718 *
1719 * SELECT m.member_id, m.member_name FROM members AS m
1720 *
1721 * Since the column name can include up to four segments (host, DB, table, column)
1722 * or also have an alias prefix, we need to do a bit of work to figure this out and
1723 * insert the table prefix (if it exists) in the proper position, and escape only
1724 * the correct identifiers.
1725 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001726 * @param string
1727 * @param bool
1728 * @param mixed
1729 * @param bool
1730 * @return string
Barry Mienydd671972010-10-04 16:33:58 +02001731 */
Andrey Andreev032e7ea2012-03-06 19:48:35 +02001732 public function protect_identifiers($item, $prefix_single = FALSE, $protect_identifiers = NULL, $field_exists = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001733 {
1734 if ( ! is_bool($protect_identifiers))
1735 {
Jamie Rumbelow0cd8c792012-03-08 12:52:24 +00001736 $protect_identifiers = $this->_protect_identifiers;
Derek Allard2067d1a2008-11-13 22:59:24 +00001737 }
Derek Allarde37ab382009-02-03 16:13:57 +00001738
1739 if (is_array($item))
1740 {
1741 $escaped_array = array();
Pascal Krietec3a4a8d2011-02-14 13:40:08 -05001742 foreach ($item as $k => $v)
Derek Allarde37ab382009-02-03 16:13:57 +00001743 {
Andrey Andreevbf940582012-06-10 07:05:05 +03001744 $escaped_array[$this->protect_identifiers($k)] = $this->protect_identifiers($v, $prefix_single, $protect_identifiers, $field_exists);
Derek Allarde37ab382009-02-03 16:13:57 +00001745 }
1746
1747 return $escaped_array;
1748 }
1749
Derek Allard911d3e02008-12-15 14:08:35 +00001750 // This is basically a bug fix for queries that use MAX, MIN, etc.
Barry Mienydd671972010-10-04 16:33:58 +02001751 // If a parenthesis is found we know that we do not need to
Andrey Andreev4c202602012-03-06 20:34:52 +02001752 // escape the data or add a prefix. There's probably a more graceful
Derek Allard911d3e02008-12-15 14:08:35 +00001753 // way to deal with this, but I'm not thinking of it -- Rick
Andrey Andreev3b0c08a2013-03-29 15:15:41 +02001754 //
1755 // Added exception for single quotes as well, we don't want to alter
1756 // literal strings. -- Narf
Andrey Andreev49884bc2015-06-29 11:52:34 +03001757 if (strcspn($item, "()'") !== strlen($item))
Derek Allard911d3e02008-12-15 14:08:35 +00001758 {
Andrey Andreev4db16322012-06-10 15:12:02 +03001759 return $item;
Derek Allard911d3e02008-12-15 14:08:35 +00001760 }
1761
Andrey Andreevbf940582012-06-10 07:05:05 +03001762 // Convert tabs or multiple spaces into single spaces
1763 $item = preg_replace('/\s+/', ' ', $item);
1764
Andrey Andreevbf940582012-06-10 07:05:05 +03001765 // If the item has an alias declaration we remove it and set it aside.
Andrey Andreev929fd2d2012-06-17 17:29:57 +03001766 // Note: strripos() is used in order to support spaces in table names
1767 if ($offset = strripos($item, ' AS '))
Andrey Andreevbf940582012-06-10 07:05:05 +03001768 {
Andrey Andreev929fd2d2012-06-17 17:29:57 +03001769 $alias = ($protect_identifiers)
Andrey Andreev7e963512014-02-27 15:43:24 +02001770 ? substr($item, $offset, 4).$this->escape_identifiers(substr($item, $offset + 4))
1771 : substr($item, $offset);
Andrey Andreev929fd2d2012-06-17 17:29:57 +03001772 $item = substr($item, 0, $offset);
1773 }
1774 elseif ($offset = strrpos($item, ' '))
1775 {
1776 $alias = ($protect_identifiers)
Andrey Andreev7e963512014-02-27 15:43:24 +02001777 ? ' '.$this->escape_identifiers(substr($item, $offset + 1))
1778 : substr($item, $offset);
Andrey Andreev929fd2d2012-06-17 17:29:57 +03001779 $item = substr($item, 0, $offset);
Andrey Andreevbf940582012-06-10 07:05:05 +03001780 }
1781 else
1782 {
1783 $alias = '';
1784 }
1785
Derek Allard2067d1a2008-11-13 22:59:24 +00001786 // Break the string apart if it contains periods, then insert the table prefix
1787 // in the correct location, assuming the period doesn't indicate that we're dealing
1788 // with an alias. While we're at it, we will escape the components
1789 if (strpos($item, '.') !== FALSE)
1790 {
1791 $parts = explode('.', $item);
Barry Mienydd671972010-10-04 16:33:58 +02001792
Derek Allard2067d1a2008-11-13 22:59:24 +00001793 // Does the first segment of the exploded item match
Andrey Andreev4c202602012-03-06 20:34:52 +02001794 // one of the aliases previously identified? If so,
Derek Allard2067d1a2008-11-13 22:59:24 +00001795 // we have nothing more to do other than escape the item
Jamie Rumbelow7efad202012-02-19 12:37:00 +00001796 if (in_array($parts[0], $this->qb_aliased_tables))
Derek Allard911d3e02008-12-15 14:08:35 +00001797 {
Derek Allard2067d1a2008-11-13 22:59:24 +00001798 if ($protect_identifiers === TRUE)
1799 {
1800 foreach ($parts as $key => $val)
1801 {
1802 if ( ! in_array($val, $this->_reserved_identifiers))
1803 {
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001804 $parts[$key] = $this->escape_identifiers($val);
Derek Allard2067d1a2008-11-13 22:59:24 +00001805 }
1806 }
Barry Mienydd671972010-10-04 16:33:58 +02001807
Derek Allard2067d1a2008-11-13 22:59:24 +00001808 $item = implode('.', $parts);
Barry Mienydd671972010-10-04 16:33:58 +02001809 }
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001810
Derek Allard2067d1a2008-11-13 22:59:24 +00001811 return $item.$alias;
1812 }
Barry Mienydd671972010-10-04 16:33:58 +02001813
Andrey Andreev4c202602012-03-06 20:34:52 +02001814 // Is there a table prefix defined in the config file? If not, no need to do anything
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001815 if ($this->dbprefix !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001816 {
1817 // We now add the table prefix based on some logic.
1818 // Do we have 4 segments (hostname.database.table.column)?
1819 // If so, we add the table prefix to the column name in the 3rd segment.
1820 if (isset($parts[3]))
1821 {
1822 $i = 2;
1823 }
1824 // Do we have 3 segments (database.table.column)?
1825 // If so, we add the table prefix to the column name in 2nd position
1826 elseif (isset($parts[2]))
1827 {
1828 $i = 1;
1829 }
1830 // Do we have 2 segments (table.column)?
1831 // If so, we add the table prefix to the column name in 1st segment
1832 else
1833 {
1834 $i = 0;
1835 }
Barry Mienydd671972010-10-04 16:33:58 +02001836
Derek Allard2067d1a2008-11-13 22:59:24 +00001837 // This flag is set when the supplied $item does not contain a field name.
1838 // This can happen when this function is being called from a JOIN.
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001839 if ($field_exists === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001840 {
1841 $i++;
1842 }
Barry Mienydd671972010-10-04 16:33:58 +02001843
Derek Jones55acc8b2009-07-11 03:38:13 +00001844 // Verify table prefix and replace if necessary
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001845 if ($this->swap_pre !== '' && strpos($parts[$i], $this->swap_pre) === 0)
Derek Jones55acc8b2009-07-11 03:38:13 +00001846 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001847 $parts[$i] = preg_replace('/^'.$this->swap_pre.'(\S+?)/', $this->dbprefix.'\\1', $parts[$i]);
Derek Jones55acc8b2009-07-11 03:38:13 +00001848 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001849 // We only add the table prefix if it does not already exist
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001850 elseif (strpos($parts[$i], $this->dbprefix) !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001851 {
1852 $parts[$i] = $this->dbprefix.$parts[$i];
1853 }
Barry Mienydd671972010-10-04 16:33:58 +02001854
Derek Allard2067d1a2008-11-13 22:59:24 +00001855 // Put the parts back together
1856 $item = implode('.', $parts);
1857 }
Barry Mienydd671972010-10-04 16:33:58 +02001858
Derek Allard2067d1a2008-11-13 22:59:24 +00001859 if ($protect_identifiers === TRUE)
1860 {
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001861 $item = $this->escape_identifiers($item);
Derek Allard2067d1a2008-11-13 22:59:24 +00001862 }
Barry Mienydd671972010-10-04 16:33:58 +02001863
Derek Allard2067d1a2008-11-13 22:59:24 +00001864 return $item.$alias;
1865 }
1866
Andrey Andreev4c202602012-03-06 20:34:52 +02001867 // Is there a table prefix? If not, no need to insert it
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001868 if ($this->dbprefix !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001869 {
Derek Jones55acc8b2009-07-11 03:38:13 +00001870 // Verify table prefix and replace if necessary
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001871 if ($this->swap_pre !== '' && strpos($item, $this->swap_pre) === 0)
Derek Jones55acc8b2009-07-11 03:38:13 +00001872 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001873 $item = preg_replace('/^'.$this->swap_pre.'(\S+?)/', $this->dbprefix.'\\1', $item);
Derek Jones55acc8b2009-07-11 03:38:13 +00001874 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001875 // Do we prefix an item with no segments?
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001876 elseif ($prefix_single === TRUE && strpos($item, $this->dbprefix) !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001877 {
1878 $item = $this->dbprefix.$item;
Barry Mienydd671972010-10-04 16:33:58 +02001879 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001880 }
1881
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001882 if ($protect_identifiers === TRUE && ! in_array($item, $this->_reserved_identifiers))
Derek Allard2067d1a2008-11-13 22:59:24 +00001883 {
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001884 $item = $this->escape_identifiers($item);
Derek Allard2067d1a2008-11-13 22:59:24 +00001885 }
Barry Mienydd671972010-10-04 16:33:58 +02001886
Derek Allard2067d1a2008-11-13 22:59:24 +00001887 return $item.$alias;
1888 }
Andrey Andreev4c202602012-03-06 20:34:52 +02001889
Túbal Martín511f2252011-11-24 14:43:45 +01001890 // --------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +00001891
Túbal Martín511f2252011-11-24 14:43:45 +01001892 /**
Jamie Rumbelow17c1bed2012-03-06 21:30:38 +00001893 * Dummy method that allows Query Builder class to be disabled
Andrey Andreev16bb9bd2012-05-26 18:21:14 +03001894 * and keep count_all() working.
Túbal Martín511f2252011-11-24 14:43:45 +01001895 *
Túbal Martín511f2252011-11-24 14:43:45 +01001896 * @return void
1897 */
1898 protected function _reset_select()
1899 {
Túbal Martín511f2252011-11-24 14:43:45 +01001900 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001901
1902}