blob: 39db1615044ea078773726013ca4f34645bac9f8 [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05007 * NOTICE OF LICENSE
Andrey Andreev4c202602012-03-06 20:34:52 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreev4c202602012-03-06 20:34:52 +020010 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -050011 * This source file is subject to the Open Software License (OSL 3.0) that is
12 * bundled with this package in the files license.txt / license.rst. It is
13 * also available through the world wide web at this URL:
14 * http://opensource.org/licenses/OSL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
Derek Allard2067d1a2008-11-13 22:59:24 +000019 * @package CodeIgniter
Derek Jonesf4a4bd82011-10-20 12:18:42 -050020 * @author EllisLab Dev Team
Greg Aker0defe5d2012-01-01 18:46:41 -060021 * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
Derek Allard2067d1a2008-11-13 22:59:24 +000023 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020027defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000028
Derek Allard2067d1a2008-11-13 22:59:24 +000029/**
30 * Database Driver Class
31 *
32 * This is the platform-independent base DB implementation class.
33 * This class will not be called directly. Rather, the adapter
34 * class for the specific database will extend and instantiate it.
35 *
36 * @package CodeIgniter
37 * @subpackage Drivers
38 * @category Database
Derek Jonesf4a4bd82011-10-20 12:18:42 -050039 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000040 * @link http://codeigniter.com/user_guide/database/
41 */
Timothy Warren7eeda532012-03-19 16:01:55 -040042abstract class CI_DB_driver {
Derek Allard2067d1a2008-11-13 22:59:24 +000043
Andrey Andreevae85eb42012-11-02 01:42:31 +020044 /**
45 * Data Source Name / Connect string
46 *
47 * @var string
48 */
Andrey Andreev738f5342012-03-06 20:43:40 +020049 public $dsn;
Andrey Andreevae85eb42012-11-02 01:42:31 +020050
51 /**
52 * Username
53 *
54 * @var string
55 */
Andrey Andreevd1add432012-03-06 20:26:01 +020056 public $username;
Andrey Andreevae85eb42012-11-02 01:42:31 +020057
58 /**
59 * Password
60 *
61 * @var string
62 */
Andrey Andreevd1add432012-03-06 20:26:01 +020063 public $password;
Andrey Andreevae85eb42012-11-02 01:42:31 +020064
65 /**
66 * Hostname
67 *
68 * @var string
69 */
Andrey Andreevd1add432012-03-06 20:26:01 +020070 public $hostname;
Andrey Andreevae85eb42012-11-02 01:42:31 +020071
72 /**
73 * Database name
74 *
75 * @var string
76 */
Andrey Andreevd1add432012-03-06 20:26:01 +020077 public $database;
Andrey Andreevae85eb42012-11-02 01:42:31 +020078
79 /**
80 * Database driver
81 *
82 * @var string
83 */
Andrey Andreev75546112012-07-05 11:01:29 +030084 public $dbdriver = 'mysqli';
Andrey Andreevae85eb42012-11-02 01:42:31 +020085
86 /**
87 * Sub-driver
88 *
89 * @used-by CI_DB_pdo_driver
90 * @var string
91 */
Andrey Andreevfbba54e2012-06-23 20:26:31 +030092 public $subdriver;
Andrey Andreevae85eb42012-11-02 01:42:31 +020093
94 /**
95 * Table prefix
96 *
97 * @var string
98 */
Andrey Andreevd1add432012-03-06 20:26:01 +020099 public $dbprefix = '';
Andrey Andreevae85eb42012-11-02 01:42:31 +0200100
101 /**
102 * Character set
103 *
104 * @var string
105 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200106 public $char_set = 'utf8';
Andrey Andreevae85eb42012-11-02 01:42:31 +0200107
108 /**
109 * Collation
110 *
111 * @var string
112 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200113 public $dbcollat = 'utf8_general_ci';
Andrey Andreevae85eb42012-11-02 01:42:31 +0200114
115 /**
116 * Auto-init flag
117 *
118 * Whether to automatically initialize the DB connection.
119 *
120 * @var bool
121 */
122 public $autoinit = TRUE;
123
124 /**
125 * Encryption flag/data
126 *
127 * @var mixed
128 */
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300129 public $encrypt = FALSE;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200130
131 /**
132 * Swap Prefix
133 *
134 * @var string
135 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200136 public $swap_pre = '';
Andrey Andreevae85eb42012-11-02 01:42:31 +0200137
138 /**
139 * Database port
140 *
141 * @var int
142 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200143 public $port = '';
Andrey Andreevae85eb42012-11-02 01:42:31 +0200144
145 /**
146 * Persistent connection flag
147 *
148 * @var bool
149 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200150 public $pconnect = FALSE;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200151
152 /**
153 * Connection ID
154 *
155 * @var object|resource
156 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200157 public $conn_id = FALSE;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200158
159 /**
160 * Result ID
161 *
162 * @var object|resource
163 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200164 public $result_id = FALSE;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200165
166 /**
167 * Debug flag
168 *
169 * Whether to display error messages.
170 *
171 * @var bool
172 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200173 public $db_debug = FALSE;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200174
175 /**
176 * Benchmark time
177 *
178 * @var int
179 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200180 public $benchmark = 0;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200181
182 /**
183 * Executed queries count
184 *
185 * @var int
186 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200187 public $query_count = 0;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200188
189 /**
190 * Bind marker
191 *
192 * Character used to identify values in a prepared statement.
193 *
194 * @var string
195 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200196 public $bind_marker = '?';
Andrey Andreevae85eb42012-11-02 01:42:31 +0200197
198 /**
199 * Save queries flag
200 *
201 * Whether to keep an in-memory history of queries for debugging purposes.
202 *
203 * @var bool
204 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200205 public $save_queries = TRUE;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200206
207 /**
208 * Queries list
209 *
210 * @see CI_DB_driver::$save_queries
211 * @var string[]
212 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200213 public $queries = array();
Andrey Andreevae85eb42012-11-02 01:42:31 +0200214
215 /**
216 * Query times
217 *
218 * A list of times that queries took to execute.
219 *
220 * @var array
221 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200222 public $query_times = array();
Andrey Andreevae85eb42012-11-02 01:42:31 +0200223
224 /**
225 * Data cache
226 *
227 * An internal generic value cache.
228 *
229 * @var array
230 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200231 public $data_cache = array();
Derek Allard2067d1a2008-11-13 22:59:24 +0000232
Andrey Andreevae85eb42012-11-02 01:42:31 +0200233 /**
234 * Transaction enabled flag
235 *
236 * @var bool
237 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200238 public $trans_enabled = TRUE;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200239
240 /**
241 * Strict transaction mode flag
242 *
243 * @var bool
244 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200245 public $trans_strict = TRUE;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200246
247 /**
248 * Transaction depth level
249 *
250 * @var int
251 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200252 protected $_trans_depth = 0;
Derek Allard2067d1a2008-11-13 22:59:24 +0000253
Andrey Andreevae85eb42012-11-02 01:42:31 +0200254 /**
255 * Transaction status flag
256 *
257 * Used with transactions to determine if a rollback should occur.
258 *
259 * @var bool
260 */
261 protected $_trans_status = TRUE;
262
263 /**
264 * Cache On flag
265 *
266 * @var bool
267 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200268 public $cache_on = FALSE;
Andrey Andreevae85eb42012-11-02 01:42:31 +0200269
270 /**
271 * Cache directory path
272 *
273 * @var bool
274 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200275 public $cachedir = '';
Andrey Andreevae85eb42012-11-02 01:42:31 +0200276
277 /**
278 * Cache auto-delete flag
279 *
280 * @var bool
281 */
Andrey Andreevd1add432012-03-06 20:26:01 +0200282 public $cache_autodel = FALSE;
Barry Mienydd671972010-10-04 16:33:58 +0200283
Andrey Andreevae85eb42012-11-02 01:42:31 +0200284 /**
285 * DB Cache object
286 *
287 * @see CI_DB_cache
288 * @var object
289 */
290 public $CACHE;
291
292 /**
293 * Protect identifiers flag
294 *
295 * @var bool
296 */
Jamie Rumbelowbcee50f2012-03-08 13:00:15 +0000297 protected $_protect_identifiers = TRUE;
Andrey Andreevd1add432012-03-06 20:26:01 +0200298
Andrey Andreevae85eb42012-11-02 01:42:31 +0200299 /**
300 * List of reserved identifiers
301 *
302 * Identifiers that must NOT be escaped.
303 *
304 * @var string[]
305 */
306 protected $_reserved_identifiers = array('*');
307
308 /**
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200309 * Identifier escape character
310 *
311 * @var string
312 */
313 protected $_escape_char = '"';
314
315 /**
Andrey Andreevae85eb42012-11-02 01:42:31 +0200316 * ESCAPE statement string
317 *
318 * @var string
319 */
Andrey Andreev2ea33c32012-10-04 12:37:51 +0300320 protected $_like_escape_str = " ESCAPE '%s' ";
Andrey Andreevae85eb42012-11-02 01:42:31 +0200321
322 /**
323 * ESCAPE character
324 *
325 * @var string
326 */
Andrey Andreev2ea33c32012-10-04 12:37:51 +0300327 protected $_like_escape_chr = '!';
328
Andrey Andreev75546112012-07-05 11:01:29 +0300329 /**
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200330 * ORDER BY random keyword
331 *
332 * @var string
333 */
334 protected $_random_keyword = ' RAND()';
335
336 /**
Andrey Andreevae85eb42012-11-02 01:42:31 +0200337 * COUNT string
338 *
339 * @used-by CI_DB_driver::count_all()
340 * @used-by CI_DB_query_builder::count_all_results()
341 *
342 * @var string
Andrey Andreev77a5d942012-07-05 15:42:14 +0300343 */
344 protected $_count_string = 'SELECT COUNT(*) AS ';
345
Andrey Andreevae85eb42012-11-02 01:42:31 +0200346 // --------------------------------------------------------------------
347
Andrey Andreev77a5d942012-07-05 15:42:14 +0300348 /**
Andrey Andreevae85eb42012-11-02 01:42:31 +0200349 * Class constructor
Andrey Andreev75546112012-07-05 11:01:29 +0300350 *
Andrey Andreevae85eb42012-11-02 01:42:31 +0200351 * @param array $params
Andrey Andreev75546112012-07-05 11:01:29 +0300352 * @return void
353 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500354 public function __construct($params)
Derek Allard2067d1a2008-11-13 22:59:24 +0000355 {
356 if (is_array($params))
357 {
358 foreach ($params as $key => $val)
359 {
360 $this->$key = $val;
361 }
362 }
363
364 log_message('debug', 'Database Driver Class Initialized');
365 }
Barry Mienydd671972010-10-04 16:33:58 +0200366
Gints Murans89f77ee2012-05-23 00:23:50 +0300367 // --------------------------------------------------------------------
Root36237d82012-05-21 18:30:00 -0400368
Derek Allard2067d1a2008-11-13 22:59:24 +0000369 /**
370 * Initialize Database Settings
371 *
Andrey Andreev82e8ac12012-02-22 19:35:34 +0200372 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200373 */
Andrey Andreev82e8ac12012-02-22 19:35:34 +0200374 public function initialize()
Derek Allard2067d1a2008-11-13 22:59:24 +0000375 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200376 /* If an established connection is available, then there's
377 * no need to connect and select the database.
378 *
379 * Depending on the database driver, conn_id can be either
380 * boolean TRUE, a resource or an object.
381 */
382 if ($this->conn_id)
Derek Allard2067d1a2008-11-13 22:59:24 +0000383 {
384 return TRUE;
385 }
Barry Mienydd671972010-10-04 16:33:58 +0200386
Derek Allard2067d1a2008-11-13 22:59:24 +0000387 // ----------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200388
Derek Allard2067d1a2008-11-13 22:59:24 +0000389 // Connect to the database and set the connection ID
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100390 $this->conn_id = ($this->pconnect === FALSE) ? $this->db_connect() : $this->db_pconnect();
Derek Allard2067d1a2008-11-13 22:59:24 +0000391
Andrey Andreev82e8ac12012-02-22 19:35:34 +0200392 // No connection resource? Check if there is a failover else throw an error
Derek Allard2067d1a2008-11-13 22:59:24 +0000393 if ( ! $this->conn_id)
394 {
Felix Balfoort5d581b62011-11-29 15:53:01 +0100395 // Check if there is a failover set
396 if ( ! empty($this->failover) && is_array($this->failover))
Derek Allard2067d1a2008-11-13 22:59:24 +0000397 {
Felix Balfoort5d581b62011-11-29 15:53:01 +0100398 // Go over all the failovers
399 foreach ($this->failover as $failover)
400 {
401 // Replace the current settings with those of the failover
402 foreach ($failover as $key => $val)
403 {
404 $this->$key = $val;
405 }
406
407 // Try to connect
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100408 $this->conn_id = ($this->pconnect === FALSE) ? $this->db_connect() : $this->db_pconnect();
Felix Balfoort5d581b62011-11-29 15:53:01 +0100409
410 // If a connection is made break the foreach loop
411 if ($this->conn_id)
412 {
413 break;
414 }
415 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000416 }
Felix Balfoort5d581b62011-11-29 15:53:01 +0100417
418 // We still don't have a connection?
419 if ( ! $this->conn_id)
420 {
421 log_message('error', 'Unable to connect to the database');
422
423 if ($this->db_debug)
424 {
425 $this->display_error('db_unable_to_connect');
426 }
427 return FALSE;
428 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000429 }
430
431 // ----------------------------------------------------------------
432
433 // Select the DB... assuming a database name is specified in the config file
Andrey Andreev82e8ac12012-02-22 19:35:34 +0200434 if ($this->database !== '' && ! $this->db_select())
Derek Allard2067d1a2008-11-13 22:59:24 +0000435 {
Andrey Andreev82e8ac12012-02-22 19:35:34 +0200436 log_message('error', 'Unable to select database: '.$this->database);
Barry Mienydd671972010-10-04 16:33:58 +0200437
Andrey Andreev82e8ac12012-02-22 19:35:34 +0200438 if ($this->db_debug)
Derek Allard2067d1a2008-11-13 22:59:24 +0000439 {
Andrey Andreev82e8ac12012-02-22 19:35:34 +0200440 $this->display_error('db_unable_to_select', $this->database);
Derek Allard2067d1a2008-11-13 22:59:24 +0000441 }
Andrey Andreev82e8ac12012-02-22 19:35:34 +0200442 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000443 }
444
Andrey Andreev82e8ac12012-02-22 19:35:34 +0200445 // Now we set the character set and that's all
Andrey Andreev95bd1d12012-03-12 16:22:28 +0200446 return $this->db_set_charset($this->char_set);
Derek Allard2067d1a2008-11-13 22:59:24 +0000447 }
Barry Mienydd671972010-10-04 16:33:58 +0200448
Derek Allard2067d1a2008-11-13 22:59:24 +0000449 // --------------------------------------------------------------------
450
451 /**
Andrey Andreev2cae1932012-03-23 16:08:41 +0200452 * Reconnect
453 *
454 * Keep / reestablish the db connection if no queries have been
455 * sent for a length of time exceeding the server's idle timeout.
456 *
457 * This is just a dummy method to allow drivers without such
458 * functionality to not declare it, while others will override it.
459 *
460 * @return void
461 */
462 public function reconnect()
463 {
464 }
465
466 // --------------------------------------------------------------------
467
468 /**
Andrey Andreevbee66442012-03-28 15:28:19 +0300469 * Select database
470 *
471 * This is just a dummy method to allow drivers without such
472 * functionality to not declare it, while others will override it.
473 *
474 * @return bool
475 */
476 public function db_select()
477 {
478 return TRUE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000479 }
480
481 // --------------------------------------------------------------------
482
483 /**
484 * Set client character set
485 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000486 * @param string
Andrey Andreev063f5962012-02-27 12:20:52 +0200487 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +0000488 */
Andrey Andreev95bd1d12012-03-12 16:22:28 +0200489 public function db_set_charset($charset)
Derek Allard2067d1a2008-11-13 22:59:24 +0000490 {
Andrey Andreev95bd1d12012-03-12 16:22:28 +0200491 if (method_exists($this, '_db_set_charset') && ! $this->_db_set_charset($charset))
Derek Allard2067d1a2008-11-13 22:59:24 +0000492 {
Andrey Andreev063f5962012-02-27 12:20:52 +0200493 log_message('error', 'Unable to set database connection charset: '.$charset);
Barry Mienydd671972010-10-04 16:33:58 +0200494
Derek Allard2067d1a2008-11-13 22:59:24 +0000495 if ($this->db_debug)
496 {
Andrey Andreev063f5962012-02-27 12:20:52 +0200497 $this->display_error('db_unable_to_set_charset', $charset);
Derek Allard2067d1a2008-11-13 22:59:24 +0000498 }
Barry Mienydd671972010-10-04 16:33:58 +0200499
Derek Allard2067d1a2008-11-13 22:59:24 +0000500 return FALSE;
501 }
Barry Mienydd671972010-10-04 16:33:58 +0200502
Derek Allard2067d1a2008-11-13 22:59:24 +0000503 return TRUE;
504 }
Barry Mienydd671972010-10-04 16:33:58 +0200505
Derek Allard2067d1a2008-11-13 22:59:24 +0000506 // --------------------------------------------------------------------
507
508 /**
509 * The name of the platform in use (mysql, mssql, etc...)
510 *
Barry Mienydd671972010-10-04 16:33:58 +0200511 * @return string
512 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500513 public function platform()
Derek Allard2067d1a2008-11-13 22:59:24 +0000514 {
515 return $this->dbdriver;
516 }
517
518 // --------------------------------------------------------------------
519
520 /**
Andrey Andreev08856b82012-03-03 03:19:28 +0200521 * Database version number
Derek Allard2067d1a2008-11-13 22:59:24 +0000522 *
Andrey Andreev08856b82012-03-03 03:19:28 +0200523 * Returns a string containing the version of the database being used.
524 * Most drivers will override this method.
525 *
Barry Mienydd671972010-10-04 16:33:58 +0200526 * @return string
527 */
Andrey Andreev08856b82012-03-03 03:19:28 +0200528 public function version()
Derek Allard2067d1a2008-11-13 22:59:24 +0000529 {
Andrey Andreev08856b82012-03-03 03:19:28 +0200530 if (isset($this->data_cache['version']))
531 {
532 return $this->data_cache['version'];
533 }
534
Derek Allard2067d1a2008-11-13 22:59:24 +0000535 if (FALSE === ($sql = $this->_version()))
536 {
Andrey Andreev08856b82012-03-03 03:19:28 +0200537 return ($this->db_debug) ? $this->display_error('db_unsupported_function') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000538 }
Derek Allard3683f772009-12-16 17:32:33 +0000539
Andrey Andreev08856b82012-03-03 03:19:28 +0200540 $query = $this->query($sql);
541 $query = $query->row();
542 return $this->data_cache['version'] = $query->ver;
543 }
Derek Allard3683f772009-12-16 17:32:33 +0000544
Andrey Andreev08856b82012-03-03 03:19:28 +0200545 // --------------------------------------------------------------------
546
547 /**
548 * Version number query string
549 *
550 * @return string
551 */
552 protected function _version()
553 {
554 return 'SELECT VERSION() AS ver';
Derek Allard2067d1a2008-11-13 22:59:24 +0000555 }
Barry Mienydd671972010-10-04 16:33:58 +0200556
Derek Allard2067d1a2008-11-13 22:59:24 +0000557 // --------------------------------------------------------------------
558
559 /**
560 * Execute the query
561 *
562 * Accepts an SQL string as input and returns a result object upon
Andrey Andreev4c202602012-03-06 20:34:52 +0200563 * successful execution of a "read" type query. Returns boolean TRUE
Derek Allard2067d1a2008-11-13 22:59:24 +0000564 * upon successful execution of a "write" type query. Returns boolean
565 * FALSE upon failure, and if the $db_debug variable is set to TRUE
566 * will raise an error.
567 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +0300568 * @param string $sql
569 * @param array $binds = FALSE An array of binding data
570 * @param bool $return_object = NULL
Barry Mienydd671972010-10-04 16:33:58 +0200571 * @return mixed
572 */
Andrey Andreevb66664b2012-06-27 14:22:10 +0300573 public function query($sql, $binds = FALSE, $return_object = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000574 {
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100575 if ($sql === '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000576 {
Niklas Nilssond2018ee2011-08-30 13:39:42 +0200577 log_message('error', 'Invalid query: '.$sql);
578
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200579 return ($this->db_debug) ? $this->display_error('db_invalid_query') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000580 }
Andrey Andreevb66664b2012-06-27 14:22:10 +0300581 elseif ( ! is_bool($return_object))
582 {
583 $return_object = ! $this->is_write_type($sql);
584 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000585
586 // Verify table prefix and replace if necessary
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100587 if ($this->dbprefix !== '' && $this->swap_pre !== '' && $this->dbprefix !== $this->swap_pre)
Derek Jonese7792202010-03-02 17:24:46 -0600588 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200589 $sql = preg_replace('/(\W)'.$this->swap_pre.'(\S+?)/', '\\1'.$this->dbprefix.'\\2', $sql);
Derek Allard2067d1a2008-11-13 22:59:24 +0000590 }
Derek Jonese7792202010-03-02 17:24:46 -0600591
Ryan Dialef7474c2012-03-01 16:11:36 -0500592 // Compile binds if needed
593 if ($binds !== FALSE)
594 {
595 $sql = $this->compile_binds($sql, $binds);
596 }
597
Andrey Andreev4c202602012-03-06 20:34:52 +0200598 // Is query caching enabled? If the query is a "read type"
Derek Allard2067d1a2008-11-13 22:59:24 +0000599 // we will load the caching class and return the previously
600 // cached query if it exists
Andrey Andreevb66664b2012-06-27 14:22:10 +0300601 if ($this->cache_on === TRUE && $return_object === TRUE && $this->_cache_init())
Derek Allard2067d1a2008-11-13 22:59:24 +0000602 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200603 $this->load_rdriver();
604 if (FALSE !== ($cache = $this->CACHE->read($sql)))
Derek Allard2067d1a2008-11-13 22:59:24 +0000605 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200606 return $cache;
Derek Allard2067d1a2008-11-13 22:59:24 +0000607 }
608 }
Barry Mienydd671972010-10-04 16:33:58 +0200609
Andrey Andreevb66664b2012-06-27 14:22:10 +0300610 // Save the query for debugging
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100611 if ($this->save_queries === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000612 {
613 $this->queries[] = $sql;
614 }
Barry Mienydd671972010-10-04 16:33:58 +0200615
Derek Allard2067d1a2008-11-13 22:59:24 +0000616 // Start the Query Timer
dixyab3cab52012-04-21 00:58:00 +0200617 $time_start = microtime(TRUE);
Barry Mienydd671972010-10-04 16:33:58 +0200618
Derek Allard2067d1a2008-11-13 22:59:24 +0000619 // Run the Query
620 if (FALSE === ($this->result_id = $this->simple_query($sql)))
621 {
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100622 if ($this->save_queries === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000623 {
624 $this->query_times[] = 0;
625 }
Barry Mienydd671972010-10-04 16:33:58 +0200626
Derek Allard2067d1a2008-11-13 22:59:24 +0000627 // This will trigger a rollback if transactions are being used
628 $this->_trans_status = FALSE;
629
Andrey Andreev4be5de12012-03-02 15:45:41 +0200630 // Grab the error now, as we might run some additional queries before displaying the error
631 $error = $this->error();
Niklas Nilssond2018ee2011-08-30 13:39:42 +0200632
633 // Log errors
Andrey Andreevb66664b2012-06-27 14:22:10 +0300634 log_message('error', 'Query error: '.$error['message'].' - Invalid query: '.$sql);
Niklas Nilssond2018ee2011-08-30 13:39:42 +0200635
Derek Allard2067d1a2008-11-13 22:59:24 +0000636 if ($this->db_debug)
637 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000638 // We call this function in order to roll-back queries
Andrey Andreev4be5de12012-03-02 15:45:41 +0200639 // if transactions are enabled. If we don't call this here
Barry Mienydd671972010-10-04 16:33:58 +0200640 // the error message will trigger an exit, causing the
Derek Allard2067d1a2008-11-13 22:59:24 +0000641 // transactions to remain in limbo.
642 $this->trans_complete();
643
Niklas Nilssond2018ee2011-08-30 13:39:42 +0200644 // Display errors
Andrey Andreev27984582012-03-03 04:43:10 +0200645 return $this->display_error(array('Error Number: '.$error['code'], $error['message'], $sql));
Derek Allard2067d1a2008-11-13 22:59:24 +0000646 }
Barry Mienydd671972010-10-04 16:33:58 +0200647
Derek Allard2067d1a2008-11-13 22:59:24 +0000648 return FALSE;
649 }
Barry Mienydd671972010-10-04 16:33:58 +0200650
Derek Allard2067d1a2008-11-13 22:59:24 +0000651 // Stop and aggregate the query time results
dixyab3cab52012-04-21 00:58:00 +0200652 $time_end = microtime(TRUE);
653 $this->benchmark += $time_end - $time_start;
Derek Allard2067d1a2008-11-13 22:59:24 +0000654
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100655 if ($this->save_queries === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000656 {
dixyab3cab52012-04-21 00:58:00 +0200657 $this->query_times[] = $time_end - $time_start;
Derek Allard2067d1a2008-11-13 22:59:24 +0000658 }
Barry Mienydd671972010-10-04 16:33:58 +0200659
Derek Allard2067d1a2008-11-13 22:59:24 +0000660 // Increment the query counter
661 $this->query_count++;
Barry Mienydd671972010-10-04 16:33:58 +0200662
Andrey Andreevb66664b2012-06-27 14:22:10 +0300663 // Will we have a result object instantiated? If not - we'll simply return TRUE
664 if ($return_object !== TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000665 {
Andrey Andreevb66664b2012-06-27 14:22:10 +0300666 // If caching is enabled we'll auto-cleanup any existing files related to this particular URI
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100667 if ($this->cache_on === TRUE && $this->cache_autodel === TRUE && $this->_cache_init())
Derek Allard2067d1a2008-11-13 22:59:24 +0000668 {
669 $this->CACHE->delete();
670 }
Barry Mienydd671972010-10-04 16:33:58 +0200671
Derek Allard2067d1a2008-11-13 22:59:24 +0000672 return TRUE;
673 }
Barry Mienydd671972010-10-04 16:33:58 +0200674
Derek Allard2067d1a2008-11-13 22:59:24 +0000675 // Return TRUE if we don't need to create a result object
Derek Allard2067d1a2008-11-13 22:59:24 +0000676 if ($return_object !== TRUE)
677 {
678 return TRUE;
679 }
Barry Mienydd671972010-10-04 16:33:58 +0200680
681 // Load and instantiate the result driver
Andrey Andreev57bdeb62012-03-05 15:59:16 +0200682 $driver = $this->load_rdriver();
683 $RES = new $driver($this);
Barry Mienydd671972010-10-04 16:33:58 +0200684
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200685 // Is query caching enabled? If so, we'll serialize the
Derek Allard2067d1a2008-11-13 22:59:24 +0000686 // result object and save it to a cache file.
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100687 if ($this->cache_on === TRUE && $this->_cache_init())
Derek Allard2067d1a2008-11-13 22:59:24 +0000688 {
689 // We'll create a new instance of the result object
690 // only without the platform specific driver since
691 // we can't use it with cached data (the query result
692 // resource ID won't be any good once we've cached the
693 // result object, so we'll have to compile the data
694 // and save it)
695 $CR = new CI_DB_result();
Derek Allard2067d1a2008-11-13 22:59:24 +0000696 $CR->result_object = $RES->result_object();
697 $CR->result_array = $RES->result_array();
Andrey Andreev24abcb92012-01-05 20:40:15 +0200698 $CR->num_rows = $RES->num_rows();
Barry Mienydd671972010-10-04 16:33:58 +0200699
Derek Allard2067d1a2008-11-13 22:59:24 +0000700 // Reset these since cached objects can not utilize resource IDs.
701 $CR->conn_id = NULL;
702 $CR->result_id = NULL;
703
704 $this->CACHE->write($sql, $CR);
705 }
Barry Mienydd671972010-10-04 16:33:58 +0200706
Derek Allard2067d1a2008-11-13 22:59:24 +0000707 return $RES;
708 }
709
710 // --------------------------------------------------------------------
711
712 /**
713 * Load the result drivers
714 *
Barry Mienydd671972010-10-04 16:33:58 +0200715 * @return string the name of the result class
716 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500717 public function load_rdriver()
Derek Allard2067d1a2008-11-13 22:59:24 +0000718 {
719 $driver = 'CI_DB_'.$this->dbdriver.'_result';
720
721 if ( ! class_exists($driver))
722 {
Greg Aker3a746652011-04-19 10:59:47 -0500723 include_once(BASEPATH.'database/DB_result.php');
724 include_once(BASEPATH.'database/drivers/'.$this->dbdriver.'/'.$this->dbdriver.'_result.php');
Derek Allard2067d1a2008-11-13 22:59:24 +0000725 }
Barry Mienydd671972010-10-04 16:33:58 +0200726
Derek Allard2067d1a2008-11-13 22:59:24 +0000727 return $driver;
728 }
Barry Mienydd671972010-10-04 16:33:58 +0200729
Derek Allard2067d1a2008-11-13 22:59:24 +0000730 // --------------------------------------------------------------------
731
732 /**
733 * Simple Query
Andrey Andreev4c202602012-03-06 20:34:52 +0200734 * This is a simplified version of the query() function. Internally
Derek Allard2067d1a2008-11-13 22:59:24 +0000735 * we only use it when running transaction commands since they do
736 * not require all the features of the main query() function.
737 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000738 * @param string the sql query
Barry Mienydd671972010-10-04 16:33:58 +0200739 * @return mixed
740 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500741 public function simple_query($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000742 {
743 if ( ! $this->conn_id)
744 {
745 $this->initialize();
746 }
747
748 return $this->_execute($sql);
749 }
Barry Mienydd671972010-10-04 16:33:58 +0200750
Derek Allard2067d1a2008-11-13 22:59:24 +0000751 // --------------------------------------------------------------------
752
753 /**
754 * Disable Transactions
755 * This permits transactions to be disabled at run-time.
756 *
Barry Mienydd671972010-10-04 16:33:58 +0200757 * @return void
758 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500759 public function trans_off()
Derek Allard2067d1a2008-11-13 22:59:24 +0000760 {
761 $this->trans_enabled = FALSE;
762 }
763
764 // --------------------------------------------------------------------
765
766 /**
767 * Enable/disable Transaction Strict Mode
768 * When strict mode is enabled, if you are running multiple groups of
769 * transactions, if one group fails all groups will be rolled back.
770 * If strict mode is disabled, each group is treated autonomously, meaning
771 * a failure of one group will not affect any others
772 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +0300773 * @param bool $mode = TRUE
Barry Mienydd671972010-10-04 16:33:58 +0200774 * @return void
775 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500776 public function trans_strict($mode = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000777 {
778 $this->trans_strict = is_bool($mode) ? $mode : TRUE;
779 }
Barry Mienydd671972010-10-04 16:33:58 +0200780
Derek Allard2067d1a2008-11-13 22:59:24 +0000781 // --------------------------------------------------------------------
782
783 /**
784 * Start Transaction
785 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +0300786 * @param bool $test_mode = FALSE
Barry Mienydd671972010-10-04 16:33:58 +0200787 * @return void
788 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500789 public function trans_start($test_mode = FALSE)
Barry Mienydd671972010-10-04 16:33:58 +0200790 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000791 if ( ! $this->trans_enabled)
792 {
793 return FALSE;
794 }
795
796 // When transactions are nested we only begin/commit/rollback the outermost ones
797 if ($this->_trans_depth > 0)
798 {
799 $this->_trans_depth += 1;
800 return;
801 }
Barry Mienydd671972010-10-04 16:33:58 +0200802
Derek Allard2067d1a2008-11-13 22:59:24 +0000803 $this->trans_begin($test_mode);
Jacob Terry07fcedf2011-11-22 11:21:36 -0500804 $this->_trans_depth += 1;
Derek Allard2067d1a2008-11-13 22:59:24 +0000805 }
806
807 // --------------------------------------------------------------------
808
809 /**
810 * Complete Transaction
811 *
Barry Mienydd671972010-10-04 16:33:58 +0200812 * @return bool
813 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500814 public function trans_complete()
Derek Allard2067d1a2008-11-13 22:59:24 +0000815 {
816 if ( ! $this->trans_enabled)
817 {
818 return FALSE;
819 }
Barry Mienydd671972010-10-04 16:33:58 +0200820
Derek Allard2067d1a2008-11-13 22:59:24 +0000821 // When transactions are nested we only begin/commit/rollback the outermost ones
822 if ($this->_trans_depth > 1)
823 {
824 $this->_trans_depth -= 1;
825 return TRUE;
826 }
Jacob Terry07fcedf2011-11-22 11:21:36 -0500827 else
828 {
829 $this->_trans_depth = 0;
830 }
Barry Mienydd671972010-10-04 16:33:58 +0200831
Derek Allard2067d1a2008-11-13 22:59:24 +0000832 // The query() function will set this flag to FALSE in the event that a query failed
833 if ($this->_trans_status === FALSE)
834 {
835 $this->trans_rollback();
Barry Mienydd671972010-10-04 16:33:58 +0200836
Derek Allard2067d1a2008-11-13 22:59:24 +0000837 // If we are NOT running in strict mode, we will reset
838 // the _trans_status flag so that subsequent groups of transactions
839 // will be permitted.
840 if ($this->trans_strict === FALSE)
841 {
842 $this->_trans_status = TRUE;
843 }
844
845 log_message('debug', 'DB Transaction Failure');
846 return FALSE;
847 }
Barry Mienydd671972010-10-04 16:33:58 +0200848
Derek Allard2067d1a2008-11-13 22:59:24 +0000849 $this->trans_commit();
850 return TRUE;
851 }
852
853 // --------------------------------------------------------------------
854
855 /**
856 * Lets you retrieve the transaction flag to determine if it has failed
857 *
Barry Mienydd671972010-10-04 16:33:58 +0200858 * @return bool
859 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500860 public function trans_status()
Derek Allard2067d1a2008-11-13 22:59:24 +0000861 {
862 return $this->_trans_status;
863 }
864
865 // --------------------------------------------------------------------
866
867 /**
868 * Compile Bindings
869 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000870 * @param string the sql statement
871 * @param array an array of bind data
Barry Mienydd671972010-10-04 16:33:58 +0200872 * @return string
873 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500874 public function compile_binds($sql, $binds)
Derek Allard2067d1a2008-11-13 22:59:24 +0000875 {
Andrey Andreev10cbdf02012-06-13 13:32:30 +0300876 if (empty($binds) OR empty($this->bind_marker) OR strpos($sql, $this->bind_marker) === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000877 {
878 return $sql;
879 }
Andrey Andreev4e9538f2012-06-12 14:16:53 +0300880 elseif ( ! is_array($binds))
Derek Allard2067d1a2008-11-13 22:59:24 +0000881 {
Andrey Andreevaf915ce2012-06-13 19:03:06 +0300882 $binds = array($binds);
Andrey Andreev10cbdf02012-06-13 13:32:30 +0300883 $bind_count = 1;
Derek Allard2067d1a2008-11-13 22:59:24 +0000884 }
Andrey Andreev4e9538f2012-06-12 14:16:53 +0300885 else
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200886 {
Andrey Andreev4e9538f2012-06-12 14:16:53 +0300887 // Make sure we're using numeric keys
888 $binds = array_values($binds);
Andrey Andreev10cbdf02012-06-13 13:32:30 +0300889 $bind_count = count($binds);
Derek Allard2067d1a2008-11-13 22:59:24 +0000890 }
891
Andrey Andreevaf915ce2012-06-13 19:03:06 +0300892 // We'll need the marker length later
893 $ml = strlen($this->bind_marker);
894
Andrey Andreev10cbdf02012-06-13 13:32:30 +0300895 // Make sure not to replace a chunk inside a string that happens to match the bind marker
896 if ($c = preg_match_all("/'[^']*'/i", $sql, $matches))
Derek Allard2067d1a2008-11-13 22:59:24 +0000897 {
Andrey Andreeve4742582012-10-25 13:25:13 +0300898 $c = preg_match_all('/'.preg_quote($this->bind_marker, '/').'/i',
Andrey Andreev10cbdf02012-06-13 13:32:30 +0300899 str_replace($matches[0],
900 str_replace($this->bind_marker, str_repeat(' ', $ml), $matches[0]),
901 $sql, $c),
902 $matches, PREG_OFFSET_CAPTURE);
903
904 // Bind values' count must match the count of markers in the query
905 if ($bind_count !== $c)
906 {
907 return $sql;
908 }
Andrey Andreev10cbdf02012-06-13 13:32:30 +0300909 }
Andrey Andreeve4742582012-10-25 13:25:13 +0300910 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 +0300911 {
Andrey Andreevaf915ce2012-06-13 19:03:06 +0300912 return $sql;
Derek Allard2067d1a2008-11-13 22:59:24 +0000913 }
914
Andrey Andreevaf915ce2012-06-13 19:03:06 +0300915 do
916 {
917 $c--;
918 $sql = substr_replace($sql, $this->escape($binds[$c]), $matches[0][$c][1], $ml);
919 }
920 while ($c !== 0);
921
Andrey Andreev4e9538f2012-06-12 14:16:53 +0300922 return $sql;
Derek Allard2067d1a2008-11-13 22:59:24 +0000923 }
Barry Mienydd671972010-10-04 16:33:58 +0200924
Derek Allard2067d1a2008-11-13 22:59:24 +0000925 // --------------------------------------------------------------------
926
927 /**
928 * Determines if a query is a "write" type.
929 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000930 * @param string An SQL query string
Andrey Andreev67f71a42012-03-01 16:18:42 +0200931 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200932 */
Andrey Andreev67f71a42012-03-01 16:18:42 +0200933 public function is_write_type($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000934 {
Andrey Andreev9e31f8f2012-10-05 17:31:46 +0300935 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 +0000936 }
Barry Mienydd671972010-10-04 16:33:58 +0200937
Derek Allard2067d1a2008-11-13 22:59:24 +0000938 // --------------------------------------------------------------------
939
940 /**
941 * Calculate the aggregate query elapsed time
942 *
Andrey Andreev4c202602012-03-06 20:34:52 +0200943 * @param int The number of decimal places
944 * @return int
Barry Mienydd671972010-10-04 16:33:58 +0200945 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500946 public function elapsed_time($decimals = 6)
Derek Allard2067d1a2008-11-13 22:59:24 +0000947 {
948 return number_format($this->benchmark, $decimals);
949 }
Barry Mienydd671972010-10-04 16:33:58 +0200950
Derek Allard2067d1a2008-11-13 22:59:24 +0000951 // --------------------------------------------------------------------
952
953 /**
954 * Returns the total number of queries
955 *
Andrey Andreev4c202602012-03-06 20:34:52 +0200956 * @return int
Barry Mienydd671972010-10-04 16:33:58 +0200957 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500958 public function total_queries()
Derek Allard2067d1a2008-11-13 22:59:24 +0000959 {
960 return $this->query_count;
961 }
Barry Mienydd671972010-10-04 16:33:58 +0200962
Derek Allard2067d1a2008-11-13 22:59:24 +0000963 // --------------------------------------------------------------------
964
965 /**
966 * Returns the last query that was executed
967 *
Andrey Andreev4c202602012-03-06 20:34:52 +0200968 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200969 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500970 public function last_query()
Derek Allard2067d1a2008-11-13 22:59:24 +0000971 {
972 return end($this->queries);
973 }
974
975 // --------------------------------------------------------------------
976
977 /**
978 * "Smart" Escape String
979 *
980 * Escapes data based on type
981 * Sets boolean and null types
982 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000983 * @param string
Barry Mienydd671972010-10-04 16:33:58 +0200984 * @return mixed
985 */
Timothy Warrene45518d2012-03-06 07:38:00 -0500986 public function escape($str)
Barry Mienydd671972010-10-04 16:33:58 +0200987 {
Joel Kallman10aa8e62012-03-09 14:54:53 -0500988 if (is_string($str) OR method_exists($str, '__toString'))
Derek Allard2067d1a2008-11-13 22:59:24 +0000989 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200990 return "'".$this->escape_str($str)."'";
Derek Jonesa377bdd2009-02-11 18:55:24 +0000991 }
992 elseif (is_bool($str))
993 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200994 return ($str === FALSE) ? 0 : 1;
Derek Jonesa377bdd2009-02-11 18:55:24 +0000995 }
996 elseif (is_null($str))
997 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200998 return 'NULL';
Derek Jonesa377bdd2009-02-11 18:55:24 +0000999 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001000
1001 return $str;
1002 }
1003
1004 // --------------------------------------------------------------------
Derek Jonese7792202010-03-02 17:24:46 -06001005
Derek Jonese4ed5832009-02-20 21:44:59 +00001006 /**
Derek Jonesbdc7fb92009-02-20 21:55:10 +00001007 * Escape LIKE String
Derek Jonese4ed5832009-02-20 21:44:59 +00001008 *
1009 * Calls the individual driver for platform
1010 * specific escaping for LIKE conditions
Barry Mienydd671972010-10-04 16:33:58 +02001011 *
Derek Jonese4ed5832009-02-20 21:44:59 +00001012 * @param string
1013 * @return mixed
1014 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001015 public function escape_like_str($str)
Barry Mienydd671972010-10-04 16:33:58 +02001016 {
1017 return $this->escape_str($str, TRUE);
Derek Jonese4ed5832009-02-20 21:44:59 +00001018 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001019
Derek Jonese4ed5832009-02-20 21:44:59 +00001020 // --------------------------------------------------------------------
Derek Jonese7792202010-03-02 17:24:46 -06001021
Derek Allard2067d1a2008-11-13 22:59:24 +00001022 /**
1023 * Primary
1024 *
Andrey Andreev4c202602012-03-06 20:34:52 +02001025 * Retrieves the primary key. It assumes that the row in the first
Derek Allard2067d1a2008-11-13 22:59:24 +00001026 * position is the primary key
1027 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001028 * @param string the table name
Barry Mienydd671972010-10-04 16:33:58 +02001029 * @return string
1030 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001031 public function primary($table = '')
Barry Mienydd671972010-10-04 16:33:58 +02001032 {
Derek Allard2067d1a2008-11-13 22:59:24 +00001033 $fields = $this->list_fields($table);
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001034 return is_array($fields) ? current($fields) : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001035 }
1036
1037 // --------------------------------------------------------------------
1038
1039 /**
Andrey Andreev16bb9bd2012-05-26 18:21:14 +03001040 * "Count All" query
1041 *
1042 * Generates a platform-specific query string that counts all records in
1043 * the specified database
1044 *
1045 * @param string
1046 * @return int
1047 */
1048 public function count_all($table = '')
1049 {
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001050 if ($table === '')
Andrey Andreev16bb9bd2012-05-26 18:21:14 +03001051 {
1052 return 0;
1053 }
1054
1055 $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 +01001056 if ($query->num_rows() === 0)
Andrey Andreev16bb9bd2012-05-26 18:21:14 +03001057 {
1058 return 0;
1059 }
1060
1061 $query = $query->row();
1062 $this->_reset_select();
1063 return (int) $query->numrows;
1064 }
1065
1066 // --------------------------------------------------------------------
1067
1068 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001069 * Returns an array of table names
1070 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001071 * @param string $constrain_by_prefix = FALSE
Barry Mienydd671972010-10-04 16:33:58 +02001072 * @return array
1073 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001074 public function list_tables($constrain_by_prefix = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001075 {
1076 // Is there a cached result?
1077 if (isset($this->data_cache['table_names']))
1078 {
1079 return $this->data_cache['table_names'];
1080 }
Barry Mienydd671972010-10-04 16:33:58 +02001081
Derek Allard2067d1a2008-11-13 22:59:24 +00001082 if (FALSE === ($sql = $this->_list_tables($constrain_by_prefix)))
1083 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001084 return ($this->db_debug) ? $this->display_error('db_unsupported_function') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001085 }
1086
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001087 $this->data_cache['table_names'] = array();
Derek Allard2067d1a2008-11-13 22:59:24 +00001088 $query = $this->query($sql);
Barry Mienydd671972010-10-04 16:33:58 +02001089
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001090 foreach ($query->result_array() as $row)
Derek Allard2067d1a2008-11-13 22:59:24 +00001091 {
Andrey Andreev12567e82012-01-25 22:50:33 +02001092 // Do we know from which column to get the table name?
1093 if ( ! isset($key))
Derek Allard2067d1a2008-11-13 22:59:24 +00001094 {
Andrey Andreev6781a5f2012-03-28 14:50:51 +03001095 if (isset($row['table_name']))
Andrey Andreev12567e82012-01-25 22:50:33 +02001096 {
1097 $key = 'table_name';
1098 }
Andrey Andreev6781a5f2012-03-28 14:50:51 +03001099 elseif (isset($row['TABLE_NAME']))
Andrey Andreev12567e82012-01-25 22:50:33 +02001100 {
1101 $key = 'TABLE_NAME';
1102 }
1103 else
1104 {
1105 /* We have no other choice but to just get the first element's key.
1106 * Due to array_shift() accepting it's argument by reference, if
1107 * E_STRICT is on, this would trigger a warning. So we'll have to
1108 * assign it first.
1109 */
1110 $key = array_keys($row);
1111 $key = array_shift($key);
1112 }
Taufan Aditya18209332012-02-09 16:07:27 +07001113 }
1114
Andrey Andreev12567e82012-01-25 22:50:33 +02001115 $this->data_cache['table_names'][] = $row[$key];
Derek Allard2067d1a2008-11-13 22:59:24 +00001116 }
1117
Derek Allard2067d1a2008-11-13 22:59:24 +00001118 return $this->data_cache['table_names'];
1119 }
Barry Mienydd671972010-10-04 16:33:58 +02001120
Derek Allard2067d1a2008-11-13 22:59:24 +00001121 // --------------------------------------------------------------------
1122
1123 /**
1124 * Determine if a particular table exists
Timothy Warrene45518d2012-03-06 07:38:00 -05001125 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001126 * @param string $table_name
Andrey Andreev4c202602012-03-06 20:34:52 +02001127 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +00001128 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001129 public function table_exists($table_name)
Barry Mienydd671972010-10-04 16:33:58 +02001130 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +02001131 return in_array($this->protect_identifiers($table_name, TRUE, FALSE, FALSE), $this->list_tables());
Derek Allard2067d1a2008-11-13 22:59:24 +00001132 }
Barry Mienydd671972010-10-04 16:33:58 +02001133
Derek Allard2067d1a2008-11-13 22:59:24 +00001134 // --------------------------------------------------------------------
1135
1136 /**
Andrey Andreev75546112012-07-05 11:01:29 +03001137 * Fetch Field Names
Derek Allard2067d1a2008-11-13 22:59:24 +00001138 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001139 * @param string the table name
Barry Mienydd671972010-10-04 16:33:58 +02001140 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +00001141 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001142 public function list_fields($table = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001143 {
1144 // Is there a cached result?
1145 if (isset($this->data_cache['field_names'][$table]))
1146 {
1147 return $this->data_cache['field_names'][$table];
1148 }
Barry Mienydd671972010-10-04 16:33:58 +02001149
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001150 if ($table === '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001151 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001152 return ($this->db_debug) ? $this->display_error('db_field_param_missing') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001153 }
Barry Mienydd671972010-10-04 16:33:58 +02001154
Greg Aker1edde302010-01-26 00:17:01 +00001155 if (FALSE === ($sql = $this->_list_columns($table)))
Derek Allard2067d1a2008-11-13 22:59:24 +00001156 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001157 return ($this->db_debug) ? $this->display_error('db_unsupported_function') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001158 }
Barry Mienydd671972010-10-04 16:33:58 +02001159
Derek Allard2067d1a2008-11-13 22:59:24 +00001160 $query = $this->query($sql);
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001161 $this->data_cache['field_names'][$table] = array();
Barry Mienydd671972010-10-04 16:33:58 +02001162
Pascal Krietec3a4a8d2011-02-14 13:40:08 -05001163 foreach ($query->result_array() as $row)
Derek Allard2067d1a2008-11-13 22:59:24 +00001164 {
Andrey Andreev12567e82012-01-25 22:50:33 +02001165 // Do we know from where to get the column's name?
1166 if ( ! isset($key))
Derek Allard2067d1a2008-11-13 22:59:24 +00001167 {
Andrey Andreev6781a5f2012-03-28 14:50:51 +03001168 if (isset($row['column_name']))
Andrey Andreev12567e82012-01-25 22:50:33 +02001169 {
1170 $key = 'column_name';
1171 }
Andrey Andreev6781a5f2012-03-28 14:50:51 +03001172 elseif (isset($row['COLUMN_NAME']))
Andrey Andreev12567e82012-01-25 22:50:33 +02001173 {
1174 $key = 'COLUMN_NAME';
1175 }
1176 else
1177 {
1178 /* We have no other choice but to just get the first element's key.
1179 * Due to array_shift() accepting it's argument by reference, if
1180 * E_STRICT is on, this would trigger a warning. So we'll have to
1181 * assign it first.
1182 */
1183 $key = array_keys($row);
1184 $key = array_shift($key);
1185 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001186 }
Andrey Andreev12567e82012-01-25 22:50:33 +02001187
1188 $this->data_cache['field_names'][$table][] = $row[$key];
Derek Allard2067d1a2008-11-13 22:59:24 +00001189 }
Barry Mienydd671972010-10-04 16:33:58 +02001190
Derek Allard2067d1a2008-11-13 22:59:24 +00001191 return $this->data_cache['field_names'][$table];
1192 }
1193
1194 // --------------------------------------------------------------------
1195
1196 /**
1197 * Determine if a particular field exists
Timothy Warrene45518d2012-03-06 07:38:00 -05001198 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001199 * @param string
1200 * @param string
Andrey Andreev4c202602012-03-06 20:34:52 +02001201 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +00001202 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001203 public function field_exists($field_name, $table_name)
Barry Mienydd671972010-10-04 16:33:58 +02001204 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001205 return in_array($field_name, $this->list_fields($table_name));
Derek Allard2067d1a2008-11-13 22:59:24 +00001206 }
Barry Mienydd671972010-10-04 16:33:58 +02001207
Derek Allard2067d1a2008-11-13 22:59:24 +00001208 // --------------------------------------------------------------------
1209
1210 /**
1211 * Returns an object with field data
1212 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001213 * @param string the table name
Barry Mienydd671972010-10-04 16:33:58 +02001214 * @return object
1215 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001216 public function field_data($table = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001217 {
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001218 if ($table === '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001219 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001220 return ($this->db_debug) ? $this->display_error('db_field_param_missing') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001221 }
Barry Mienydd671972010-10-04 16:33:58 +02001222
Andrey Andreev032e7ea2012-03-06 19:48:35 +02001223 $query = $this->query($this->_field_data($this->protect_identifiers($table, TRUE, NULL, FALSE)));
Derek Allard2067d1a2008-11-13 22:59:24 +00001224 return $query->field_data();
Barry Mienydd671972010-10-04 16:33:58 +02001225 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001226
1227 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001228
Derek Allard2067d1a2008-11-13 22:59:24 +00001229 /**
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001230 * Escape the SQL Identifiers
1231 *
1232 * This function escapes column and table names
1233 *
Andrey Andreev9637b402012-06-08 15:39:24 +03001234 * @param mixed
1235 * @return mixed
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001236 */
1237 public function escape_identifiers($item)
1238 {
Andrey Andreev49aa45b2012-07-06 16:22:21 +03001239 if ($this->_escape_char === '' OR empty($item))
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001240 {
1241 return $item;
1242 }
Andrey Andreev9637b402012-06-08 15:39:24 +03001243 elseif (is_array($item))
1244 {
1245 foreach ($item as $key => $value)
1246 {
1247 $item[$key] = $this->escape_identifiers($value);
1248 }
1249
1250 return $item;
1251 }
Andrey Andreev49aa45b2012-07-06 16:22:21 +03001252 // Avoid breaking functions and literal values inside queries
Andrey Andreev9859cb02012-07-13 13:07:58 +03001253 elseif (ctype_digit($item) OR $item[0] === "'" OR ($this->_escape_char !== '"' && $item[0] === '"') OR strpos($item, '(') !== FALSE)
Andrey Andreev7db0f592012-06-28 17:54:27 +03001254 {
1255 return $item;
1256 }
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001257
Andrey Andreev082ee2b2012-06-08 15:26:34 +03001258 static $preg_ec = array();
1259
1260 if (empty($preg_ec))
1261 {
1262 if (is_array($this->_escape_char))
1263 {
Andrey Andreev2636c1c2012-07-02 14:53:39 +03001264 $preg_ec = array(
Andrey Andreeve4742582012-10-25 13:25:13 +03001265 preg_quote($this->_escape_char[0], '/'), preg_quote($this->_escape_char[1], '/'),
Andrey Andreev2636c1c2012-07-02 14:53:39 +03001266 $this->_escape_char[0], $this->_escape_char[1]
1267 );
Andrey Andreev082ee2b2012-06-08 15:26:34 +03001268 }
1269 else
1270 {
Andrey Andreeve4742582012-10-25 13:25:13 +03001271 $preg_ec[0] = $preg_ec[1] = preg_quote($this->_escape_char, '/');
Andrey Andreev2636c1c2012-07-02 14:53:39 +03001272 $preg_ec[2] = $preg_ec[3] = $this->_escape_char;
Andrey Andreev082ee2b2012-06-08 15:26:34 +03001273 }
1274 }
1275
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001276 foreach ($this->_reserved_identifiers as $id)
1277 {
1278 if (strpos($item, '.'.$id) !== FALSE)
1279 {
Andrey Andreev2636c1c2012-07-02 14:53:39 +03001280 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 +03001281 }
1282 }
1283
Andrey Andreev2636c1c2012-07-02 14:53:39 +03001284 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 +03001285 }
1286
1287 // --------------------------------------------------------------------
1288
1289 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001290 * Generate an insert string
1291 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001292 * @param string the table upon which the query will be performed
1293 * @param array an associative array data of key/values
Barry Mienydd671972010-10-04 16:33:58 +02001294 * @return string
1295 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001296 public function insert_string($table, $data)
Derek Allard2067d1a2008-11-13 22:59:24 +00001297 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001298 $fields = $values = array();
Barry Mienydd671972010-10-04 16:33:58 +02001299
Pascal Krietec3a4a8d2011-02-14 13:40:08 -05001300 foreach ($data as $key => $val)
Derek Allard2067d1a2008-11-13 22:59:24 +00001301 {
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001302 $fields[] = $this->escape_identifiers($key);
Derek Allard2067d1a2008-11-13 22:59:24 +00001303 $values[] = $this->escape($val);
1304 }
Barry Mienydd671972010-10-04 16:33:58 +02001305
Andrey Andreev032e7ea2012-03-06 19:48:35 +02001306 return $this->_insert($this->protect_identifiers($table, TRUE, NULL, FALSE), $fields, $values);
Barry Mienydd671972010-10-04 16:33:58 +02001307 }
1308
Derek Allard2067d1a2008-11-13 22:59:24 +00001309 // --------------------------------------------------------------------
1310
1311 /**
Andrey Andreev75546112012-07-05 11:01:29 +03001312 * Insert statement
1313 *
1314 * Generates a platform-specific insert string from the supplied data
1315 *
1316 * @param string the table name
1317 * @param array the insert keys
1318 * @param array the insert values
1319 * @return string
1320 */
1321 protected function _insert($table, $keys, $values)
1322 {
1323 return 'INSERT INTO '.$table.' ('.implode(', ', $keys).') VALUES ('.implode(', ', $values).')';
1324 }
1325
1326 // --------------------------------------------------------------------
1327
1328 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001329 * Generate an update string
1330 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001331 * @param string the table upon which the query will be performed
1332 * @param array an associative array data of key/values
1333 * @param mixed the "where" statement
Barry Mienydd671972010-10-04 16:33:58 +02001334 * @return string
1335 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001336 public function update_string($table, $data, $where)
Derek Allard2067d1a2008-11-13 22:59:24 +00001337 {
Andrey Andreev87f4dc22012-11-01 01:11:22 +02001338 if (empty($where))
Derek Allard2067d1a2008-11-13 22:59:24 +00001339 {
Andrey Andreev4c202602012-03-06 20:34:52 +02001340 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001341 }
Barry Mienydd671972010-10-04 16:33:58 +02001342
Andrey Andreev87f4dc22012-11-01 01:11:22 +02001343 $this->where($where);
1344
Derek Allard2067d1a2008-11-13 22:59:24 +00001345 $fields = array();
Pascal Krietec3a4a8d2011-02-14 13:40:08 -05001346 foreach ($data as $key => $val)
Derek Allard2067d1a2008-11-13 22:59:24 +00001347 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +02001348 $fields[$this->protect_identifiers($key)] = $this->escape($val);
Derek Allard2067d1a2008-11-13 22:59:24 +00001349 }
1350
Andrey Andreev032e7ea2012-03-06 19:48:35 +02001351 return $this->_update($this->protect_identifiers($table, TRUE, NULL, FALSE), $fields, $dest);
Barry Mienydd671972010-10-04 16:33:58 +02001352 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001353
1354 // --------------------------------------------------------------------
1355
1356 /**
Andrey Andreev75546112012-07-05 11:01:29 +03001357 * Update statement
1358 *
1359 * Generates a platform-specific update string from the supplied data
1360 *
1361 * @param string the table name
Andrey Andreev822317b2012-07-19 16:00:32 +03001362 * @param array the update data
Andrey Andreev75546112012-07-05 11:01:29 +03001363 * @return string
1364 */
Andrey Andreevb0478652012-07-18 15:34:46 +03001365 protected function _update($table, $values)
Andrey Andreev75546112012-07-05 11:01:29 +03001366 {
1367 foreach ($values as $key => $val)
1368 {
1369 $valstr[] = $key.' = '.$val;
1370 }
1371
Andrey Andreev75546112012-07-05 11:01:29 +03001372 return 'UPDATE '.$table.' SET '.implode(', ', $valstr)
Andrey Andreev2d486232012-07-19 14:46:51 +03001373 .$this->_compile_wh('qb_where')
1374 .$this->_compile_order_by()
Andrey Andreevc9b924c2012-07-19 13:06:02 +03001375 .($this->qb_limit ? ' LIMIT '.$this->qb_limit : '');
Andrey Andreev75546112012-07-05 11:01:29 +03001376 }
1377
1378 // --------------------------------------------------------------------
1379
1380 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001381 * Tests whether the string has an SQL operator
1382 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001383 * @param string
1384 * @return bool
1385 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001386 protected function _has_operator($str)
Derek Allard2067d1a2008-11-13 22:59:24 +00001387 {
Andrey Andreevb0478652012-07-18 15:34:46 +03001388 return (bool) preg_match('/(<|>|!|=|\sIS NULL|\sIS NOT NULL|\sBETWEEN|\sLIKE|\sIN\s*\(|\s)/i', trim($str));
Derek Allard2067d1a2008-11-13 22:59:24 +00001389 }
1390
1391 // --------------------------------------------------------------------
1392
1393 /**
Andrey Andreev929fd2d2012-06-17 17:29:57 +03001394 * Returns the SQL string operator
1395 *
1396 * @param string
1397 * @return string
1398 */
1399 protected function _get_operator($str)
1400 {
Andrey Andreeve8be24b2012-07-19 16:11:17 +03001401 static $_operators;
Andrey Andreev6e704752012-07-18 00:46:33 +03001402
Andrey Andreeve8be24b2012-07-19 16:11:17 +03001403 if (empty($_operators))
Andrey Andreevb0478652012-07-18 15:34:46 +03001404 {
Andrey Andreeve8be24b2012-07-19 16:11:17 +03001405 $_les = ($this->_like_escape_str !== '')
Andrey Andreeve4742582012-10-25 13:25:13 +03001406 ? '\s+'.preg_quote(trim(sprintf($this->_like_escape_str, $this->_like_escape_chr)), '/')
Andrey Andreeve8be24b2012-07-19 16:11:17 +03001407 : '';
Andrey Andreeve8be24b2012-07-19 16:11:17 +03001408 $_operators = array(
1409 '\s*(?:<|>|!)?=\s*', // =, <=, >=, !=
1410 '\s*<>?\s*', // <, <>
1411 '\s*>\s*', // >
1412 '\s+IS NULL', // IS NULL
1413 '\s+IS NOT NULL', // IS NOT NULL
1414 '\s+BETWEEN\s+\S+\s+AND\s+\S+', // BETWEEN value AND value
1415 '\s+IN\s*\([^\)]+\)', // IN(list)
1416 '\s+NOT IN\s*\([^\)]+\)', // NOT IN (list)
1417 '\s+LIKE\s+\S+'.$_les, // LIKE 'expr'[ ESCAPE '%s']
1418 '\s+NOT LIKE\s+\S+'.$_les // NOT LIKE 'expr'[ ESCAPE '%s']
1419 );
1420
1421 }
Andrey Andreevb0478652012-07-18 15:34:46 +03001422
Andrey Andreev6e704752012-07-18 00:46:33 +03001423 return preg_match('/'.implode('|', $_operators).'/i', $str, $match)
1424 ? $match[0] : FALSE;
Andrey Andreev929fd2d2012-06-17 17:29:57 +03001425 }
1426
1427 // --------------------------------------------------------------------
1428
1429 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001430 * Enables a native PHP function to be run, using a platform agnostic wrapper.
1431 *
Andrey Andreevae85eb42012-11-02 01:42:31 +02001432 * @param string $function Function name
Barry Mienydd671972010-10-04 16:33:58 +02001433 * @return mixed
1434 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001435 public function call_function($function)
Derek Allard2067d1a2008-11-13 22:59:24 +00001436 {
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001437 $driver = ($this->dbdriver === 'postgre') ? 'pg_' : $this->dbdriver.'_';
Barry Mienydd671972010-10-04 16:33:58 +02001438
Derek Allard2067d1a2008-11-13 22:59:24 +00001439 if (FALSE === strpos($driver, $function))
1440 {
1441 $function = $driver.$function;
1442 }
Barry Mienydd671972010-10-04 16:33:58 +02001443
Derek Allard2067d1a2008-11-13 22:59:24 +00001444 if ( ! function_exists($function))
1445 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001446 return ($this->db_debug) ? $this->display_error('db_unsupported_function') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001447 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001448
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001449 return (func_num_args() > 1)
1450 ? call_user_func_array($function, array_splice(func_get_args(), 1))
1451 : call_user_func($function);
Derek Allard2067d1a2008-11-13 22:59:24 +00001452 }
1453
1454 // --------------------------------------------------------------------
1455
1456 /**
1457 * Set Cache Directory Path
1458 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001459 * @param string the path to the cache directory
1460 * @return void
Barry Mienydd671972010-10-04 16:33:58 +02001461 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001462 public function cache_set_path($path = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001463 {
1464 $this->cachedir = $path;
1465 }
1466
1467 // --------------------------------------------------------------------
1468
1469 /**
1470 * Enable Query Caching
1471 *
Andrey Andreev4c202602012-03-06 20:34:52 +02001472 * @return bool cache_on value
Barry Mienydd671972010-10-04 16:33:58 +02001473 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001474 public function cache_on()
Derek Allard2067d1a2008-11-13 22:59:24 +00001475 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001476 return $this->cache_on = TRUE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001477 }
1478
1479 // --------------------------------------------------------------------
1480
1481 /**
1482 * Disable Query Caching
1483 *
Andrey Andreev4c202602012-03-06 20:34:52 +02001484 * @return bool cache_on value
Barry Mienydd671972010-10-04 16:33:58 +02001485 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001486 public function cache_off()
Derek Allard2067d1a2008-11-13 22:59:24 +00001487 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001488 return $this->cache_on = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001489 }
Barry Mienydd671972010-10-04 16:33:58 +02001490
Derek Allard2067d1a2008-11-13 22:59:24 +00001491 // --------------------------------------------------------------------
1492
1493 /**
1494 * Delete the cache files associated with a particular URI
1495 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +03001496 * @param string $segment_one = ''
1497 * @param string $segment_two = ''
Andrey Andreev4c202602012-03-06 20:34:52 +02001498 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +02001499 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001500 public function cache_delete($segment_one = '', $segment_two = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001501 {
Andrey Andreev043f2602012-03-06 20:16:42 +02001502 return ($this->_cache_init())
1503 ? $this->CACHE->delete($segment_one, $segment_two)
1504 : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001505 }
1506
1507 // --------------------------------------------------------------------
1508
1509 /**
1510 * Delete All cache files
1511 *
Andrey Andreev4c202602012-03-06 20:34:52 +02001512 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +02001513 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001514 public function cache_delete_all()
Derek Allard2067d1a2008-11-13 22:59:24 +00001515 {
Andrey Andreev043f2602012-03-06 20:16:42 +02001516 return ($this->_cache_init())
1517 ? $this->CACHE->delete_all()
1518 : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001519 }
1520
1521 // --------------------------------------------------------------------
1522
1523 /**
1524 * Initialize the Cache Class
1525 *
Andrey Andreev4c202602012-03-06 20:34:52 +02001526 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +02001527 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001528 protected function _cache_init()
Derek Allard2067d1a2008-11-13 22:59:24 +00001529 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001530 if (class_exists('CI_DB_Cache'))
Derek Allard2067d1a2008-11-13 22:59:24 +00001531 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001532 if (is_object($this->CACHE))
Derek Allarde37ab382009-02-03 16:13:57 +00001533 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001534 return TRUE;
Derek Allarde37ab382009-02-03 16:13:57 +00001535 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001536 }
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001537 elseif ( ! @include_once(BASEPATH.'database/DB_cache.php'))
1538 {
1539 return $this->cache_off();
1540 }
Derek Allarde37ab382009-02-03 16:13:57 +00001541
Derek Allard2067d1a2008-11-13 22:59:24 +00001542 $this->CACHE = new CI_DB_Cache($this); // pass db object to support multiple db connections and returned db objects
1543 return TRUE;
1544 }
1545
1546 // --------------------------------------------------------------------
1547
1548 /**
1549 * Close DB Connection
1550 *
Barry Mienydd671972010-10-04 16:33:58 +02001551 * @return void
1552 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001553 public function close()
Derek Allard2067d1a2008-11-13 22:59:24 +00001554 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001555 if ($this->conn_id)
Derek Allard2067d1a2008-11-13 22:59:24 +00001556 {
Andrey Andreev79922c02012-05-23 12:27:17 +03001557 $this->_close();
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001558 $this->conn_id = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001559 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001560 }
Barry Mienydd671972010-10-04 16:33:58 +02001561
Derek Allard2067d1a2008-11-13 22:59:24 +00001562 // --------------------------------------------------------------------
1563
1564 /**
Andrey Andreev79922c02012-05-23 12:27:17 +03001565 * Close DB Connection
1566 *
1567 * This method would be overriden by most of the drivers.
1568 *
1569 * @return void
1570 */
1571 protected function _close()
1572 {
1573 $this->conn_id = FALSE;
1574 }
1575
1576 // --------------------------------------------------------------------
1577
1578 /**
Derek Allard2067d1a2008-11-13 22:59:24 +00001579 * Display an error message
1580 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001581 * @param string the error message
1582 * @param string any "swap" values
Andrey Andreev4c202602012-03-06 20:34:52 +02001583 * @param bool whether to localize the message
Barry Mienydd671972010-10-04 16:33:58 +02001584 * @return string sends the application/error_db.php template
1585 */
Timothy Warrene45518d2012-03-06 07:38:00 -05001586 public function display_error($error = '', $swap = '', $native = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001587 {
Derek Jonese7792202010-03-02 17:24:46 -06001588 $LANG =& load_class('Lang', 'core');
Derek Allard2067d1a2008-11-13 22:59:24 +00001589 $LANG->load('db');
1590
1591 $heading = $LANG->line('db_error_heading');
1592
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001593 if ($native === TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001594 {
Andrey Andreev85a99cc2011-09-24 17:17:37 +03001595 $message = (array) $error;
Derek Allard2067d1a2008-11-13 22:59:24 +00001596 }
1597 else
1598 {
Andrey Andreev1194ad72012-10-05 17:05:46 +03001599 $message = is_array($error) ? $error : array(str_replace('%s', $swap, $LANG->line($error)));
Derek Allard2067d1a2008-11-13 22:59:24 +00001600 }
Barry Mienydd671972010-10-04 16:33:58 +02001601
Pascal Kriete60f8c392010-08-25 18:03:28 +02001602 // Find the most likely culprit of the error by going through
1603 // the backtrace until the source file is no longer in the
1604 // database folder.
Pascal Kriete60f8c392010-08-25 18:03:28 +02001605 $trace = debug_backtrace();
Pascal Krietec3a4a8d2011-02-14 13:40:08 -05001606 foreach ($trace as $call)
Pascal Kriete60f8c392010-08-25 18:03:28 +02001607 {
Andrey Andreev1194ad72012-10-05 17:05:46 +03001608 // We'll need this on Windows, as APPPATH and BASEPATH will always use forward slashes
1609 if (DIRECTORY_SEPARATOR !== '/')
1610 {
1611 $call['file'] = str_replace('\\', '/', $call['file']);
1612 }
1613
Andrey Andreev70b78992012-10-09 10:36:04 +03001614 if (isset($call['file'], $call['class']) && strpos($call['file'], BASEPATH.'database') === FALSE && strpos($call['class'], 'Loader') !== FALSE)
Pascal Kriete60f8c392010-08-25 18:03:28 +02001615 {
1616 // Found it - use a relative path for safety
Andrey Andreev2f0dce02012-06-20 11:05:01 +03001617 $message[] = 'Filename: '.str_replace(array(APPPATH, BASEPATH), '', $call['file']);
Pascal Kriete60f8c392010-08-25 18:03:28 +02001618 $message[] = 'Line Number: '.$call['line'];
Pascal Kriete60f8c392010-08-25 18:03:28 +02001619 break;
1620 }
1621 }
Barry Mienydd671972010-10-04 16:33:58 +02001622
Derek Jonese7792202010-03-02 17:24:46 -06001623 $error =& load_class('Exceptions', 'core');
Derek Allard2067d1a2008-11-13 22:59:24 +00001624 echo $error->show_error($heading, $message, 'error_db');
1625 exit;
1626 }
1627
1628 // --------------------------------------------------------------------
1629
1630 /**
1631 * Protect Identifiers
1632 *
Jamie Rumbelow7efad202012-02-19 12:37:00 +00001633 * This function is used extensively by the Query Builder class, and by
Barry Mienydd671972010-10-04 16:33:58 +02001634 * a couple functions in this class.
Derek Allard2067d1a2008-11-13 22:59:24 +00001635 * It takes a column or table name (optionally with an alias) and inserts
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001636 * the table prefix onto it. Some logic is necessary in order to deal with
Andrey Andreev4c202602012-03-06 20:34:52 +02001637 * column names that include the path. Consider a query like this:
Derek Allard2067d1a2008-11-13 22:59:24 +00001638 *
1639 * SELECT * FROM hostname.database.table.column AS c FROM hostname.database.table
1640 *
1641 * Or a query with aliasing:
1642 *
1643 * SELECT m.member_id, m.member_name FROM members AS m
1644 *
1645 * Since the column name can include up to four segments (host, DB, table, column)
1646 * or also have an alias prefix, we need to do a bit of work to figure this out and
1647 * insert the table prefix (if it exists) in the proper position, and escape only
1648 * the correct identifiers.
1649 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001650 * @param string
1651 * @param bool
1652 * @param mixed
1653 * @param bool
1654 * @return string
Barry Mienydd671972010-10-04 16:33:58 +02001655 */
Andrey Andreev032e7ea2012-03-06 19:48:35 +02001656 public function protect_identifiers($item, $prefix_single = FALSE, $protect_identifiers = NULL, $field_exists = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001657 {
1658 if ( ! is_bool($protect_identifiers))
1659 {
Jamie Rumbelow0cd8c792012-03-08 12:52:24 +00001660 $protect_identifiers = $this->_protect_identifiers;
Derek Allard2067d1a2008-11-13 22:59:24 +00001661 }
Derek Allarde37ab382009-02-03 16:13:57 +00001662
1663 if (is_array($item))
1664 {
1665 $escaped_array = array();
Pascal Krietec3a4a8d2011-02-14 13:40:08 -05001666 foreach ($item as $k => $v)
Derek Allarde37ab382009-02-03 16:13:57 +00001667 {
Andrey Andreevbf940582012-06-10 07:05:05 +03001668 $escaped_array[$this->protect_identifiers($k)] = $this->protect_identifiers($v, $prefix_single, $protect_identifiers, $field_exists);
Derek Allarde37ab382009-02-03 16:13:57 +00001669 }
1670
1671 return $escaped_array;
1672 }
1673
Derek Allard911d3e02008-12-15 14:08:35 +00001674 // This is basically a bug fix for queries that use MAX, MIN, etc.
Barry Mienydd671972010-10-04 16:33:58 +02001675 // If a parenthesis is found we know that we do not need to
Andrey Andreev4c202602012-03-06 20:34:52 +02001676 // escape the data or add a prefix. There's probably a more graceful
Derek Allard911d3e02008-12-15 14:08:35 +00001677 // way to deal with this, but I'm not thinking of it -- Rick
1678 if (strpos($item, '(') !== FALSE)
1679 {
Andrey Andreev4db16322012-06-10 15:12:02 +03001680 return $item;
Derek Allard911d3e02008-12-15 14:08:35 +00001681 }
1682
Andrey Andreevbf940582012-06-10 07:05:05 +03001683 // Convert tabs or multiple spaces into single spaces
1684 $item = preg_replace('/\s+/', ' ', $item);
1685
Andrey Andreevbf940582012-06-10 07:05:05 +03001686 // If the item has an alias declaration we remove it and set it aside.
Andrey Andreev929fd2d2012-06-17 17:29:57 +03001687 // Note: strripos() is used in order to support spaces in table names
1688 if ($offset = strripos($item, ' AS '))
Andrey Andreevbf940582012-06-10 07:05:05 +03001689 {
Andrey Andreev929fd2d2012-06-17 17:29:57 +03001690 $alias = ($protect_identifiers)
1691 ? substr($item, $offset, 4).$this->escape_identifiers(substr($item, $offset + 4))
1692 : substr($item, $offset);
1693 $item = substr($item, 0, $offset);
1694 }
1695 elseif ($offset = strrpos($item, ' '))
1696 {
1697 $alias = ($protect_identifiers)
1698 ? ' '.$this->escape_identifiers(substr($item, $offset + 1))
1699 : substr($item, $offset);
1700 $item = substr($item, 0, $offset);
Andrey Andreevbf940582012-06-10 07:05:05 +03001701 }
1702 else
1703 {
1704 $alias = '';
1705 }
1706
Derek Allard2067d1a2008-11-13 22:59:24 +00001707 // Break the string apart if it contains periods, then insert the table prefix
1708 // in the correct location, assuming the period doesn't indicate that we're dealing
1709 // with an alias. While we're at it, we will escape the components
1710 if (strpos($item, '.') !== FALSE)
1711 {
1712 $parts = explode('.', $item);
Barry Mienydd671972010-10-04 16:33:58 +02001713
Derek Allard2067d1a2008-11-13 22:59:24 +00001714 // Does the first segment of the exploded item match
Andrey Andreev4c202602012-03-06 20:34:52 +02001715 // one of the aliases previously identified? If so,
Derek Allard2067d1a2008-11-13 22:59:24 +00001716 // we have nothing more to do other than escape the item
Jamie Rumbelow7efad202012-02-19 12:37:00 +00001717 if (in_array($parts[0], $this->qb_aliased_tables))
Derek Allard911d3e02008-12-15 14:08:35 +00001718 {
Derek Allard2067d1a2008-11-13 22:59:24 +00001719 if ($protect_identifiers === TRUE)
1720 {
1721 foreach ($parts as $key => $val)
1722 {
1723 if ( ! in_array($val, $this->_reserved_identifiers))
1724 {
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001725 $parts[$key] = $this->escape_identifiers($val);
Derek Allard2067d1a2008-11-13 22:59:24 +00001726 }
1727 }
Barry Mienydd671972010-10-04 16:33:58 +02001728
Derek Allard2067d1a2008-11-13 22:59:24 +00001729 $item = implode('.', $parts);
Barry Mienydd671972010-10-04 16:33:58 +02001730 }
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001731
Derek Allard2067d1a2008-11-13 22:59:24 +00001732 return $item.$alias;
1733 }
Barry Mienydd671972010-10-04 16:33:58 +02001734
Andrey Andreev4c202602012-03-06 20:34:52 +02001735 // Is there a table prefix defined in the config file? If not, no need to do anything
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001736 if ($this->dbprefix !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001737 {
1738 // We now add the table prefix based on some logic.
1739 // Do we have 4 segments (hostname.database.table.column)?
1740 // If so, we add the table prefix to the column name in the 3rd segment.
1741 if (isset($parts[3]))
1742 {
1743 $i = 2;
1744 }
1745 // Do we have 3 segments (database.table.column)?
1746 // If so, we add the table prefix to the column name in 2nd position
1747 elseif (isset($parts[2]))
1748 {
1749 $i = 1;
1750 }
1751 // Do we have 2 segments (table.column)?
1752 // If so, we add the table prefix to the column name in 1st segment
1753 else
1754 {
1755 $i = 0;
1756 }
Barry Mienydd671972010-10-04 16:33:58 +02001757
Derek Allard2067d1a2008-11-13 22:59:24 +00001758 // This flag is set when the supplied $item does not contain a field name.
1759 // This can happen when this function is being called from a JOIN.
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001760 if ($field_exists === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001761 {
1762 $i++;
1763 }
Barry Mienydd671972010-10-04 16:33:58 +02001764
Derek Jones55acc8b2009-07-11 03:38:13 +00001765 // Verify table prefix and replace if necessary
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001766 if ($this->swap_pre !== '' && strpos($parts[$i], $this->swap_pre) === 0)
Derek Jones55acc8b2009-07-11 03:38:13 +00001767 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001768 $parts[$i] = preg_replace('/^'.$this->swap_pre.'(\S+?)/', $this->dbprefix.'\\1', $parts[$i]);
Derek Jones55acc8b2009-07-11 03:38:13 +00001769 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001770 // We only add the table prefix if it does not already exist
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001771 elseif (strpos($parts[$i], $this->dbprefix) !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001772 {
1773 $parts[$i] = $this->dbprefix.$parts[$i];
1774 }
Barry Mienydd671972010-10-04 16:33:58 +02001775
Derek Allard2067d1a2008-11-13 22:59:24 +00001776 // Put the parts back together
1777 $item = implode('.', $parts);
1778 }
Barry Mienydd671972010-10-04 16:33:58 +02001779
Derek Allard2067d1a2008-11-13 22:59:24 +00001780 if ($protect_identifiers === TRUE)
1781 {
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001782 $item = $this->escape_identifiers($item);
Derek Allard2067d1a2008-11-13 22:59:24 +00001783 }
Barry Mienydd671972010-10-04 16:33:58 +02001784
Derek Allard2067d1a2008-11-13 22:59:24 +00001785 return $item.$alias;
1786 }
1787
Andrey Andreev4c202602012-03-06 20:34:52 +02001788 // Is there a table prefix? If not, no need to insert it
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001789 if ($this->dbprefix !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001790 {
Derek Jones55acc8b2009-07-11 03:38:13 +00001791 // Verify table prefix and replace if necessary
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001792 if ($this->swap_pre !== '' && strpos($item, $this->swap_pre) === 0)
Derek Jones55acc8b2009-07-11 03:38:13 +00001793 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001794 $item = preg_replace('/^'.$this->swap_pre.'(\S+?)/', $this->dbprefix.'\\1', $item);
Derek Jones55acc8b2009-07-11 03:38:13 +00001795 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001796 // Do we prefix an item with no segments?
Alex Bilbie48a2baf2012-06-02 11:09:54 +01001797 elseif ($prefix_single === TRUE && strpos($item, $this->dbprefix) !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001798 {
1799 $item = $this->dbprefix.$item;
Barry Mienydd671972010-10-04 16:33:58 +02001800 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001801 }
1802
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001803 if ($protect_identifiers === TRUE && ! in_array($item, $this->_reserved_identifiers))
Derek Allard2067d1a2008-11-13 22:59:24 +00001804 {
Andrey Andreevea09a8a2012-04-06 20:50:07 +03001805 $item = $this->escape_identifiers($item);
Derek Allard2067d1a2008-11-13 22:59:24 +00001806 }
Barry Mienydd671972010-10-04 16:33:58 +02001807
Derek Allard2067d1a2008-11-13 22:59:24 +00001808 return $item.$alias;
1809 }
Andrey Andreev4c202602012-03-06 20:34:52 +02001810
Túbal Martín511f2252011-11-24 14:43:45 +01001811 // --------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +00001812
Túbal Martín511f2252011-11-24 14:43:45 +01001813 /**
Jamie Rumbelow17c1bed2012-03-06 21:30:38 +00001814 * Dummy method that allows Query Builder class to be disabled
Andrey Andreev16bb9bd2012-05-26 18:21:14 +03001815 * and keep count_all() working.
Túbal Martín511f2252011-11-24 14:43:45 +01001816 *
Túbal Martín511f2252011-11-24 14:43:45 +01001817 * @return void
1818 */
1819 protected function _reset_select()
1820 {
Túbal Martín511f2252011-11-24 14:43:45 +01001821 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001822
1823}
1824
Derek Allard2067d1a2008-11-13 22:59:24 +00001825/* End of file DB_driver.php */
Andrey Andreev79922c02012-05-23 12:27:17 +03001826/* Location: ./system/database/DB_driver.php */