blob: 594fcced96a825ac4e7b19fa73f98307727502c4 [file] [log] [blame]
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
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 Andreevaf5d5582012-01-25 21:34:47 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreevaf5d5582012-01-25 21:34:47 +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 */
27
Derek Allard2067d1a2008-11-13 22:59:24 +000028/**
29 * Database Driver Class
30 *
31 * This is the platform-independent base DB implementation class.
32 * This class will not be called directly. Rather, the adapter
33 * class for the specific database will extend and instantiate it.
34 *
35 * @package CodeIgniter
36 * @subpackage Drivers
37 * @category Database
Derek Jonesf4a4bd82011-10-20 12:18:42 -050038 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000039 * @link http://codeigniter.com/user_guide/database/
40 */
Timothy Warren7eeda532012-03-19 16:01:55 -040041abstract class CI_DB_driver {
Derek Allard2067d1a2008-11-13 22:59:24 +000042
Andrey Andreev45ba4f72012-02-13 01:24:39 +020043 public $dsn;
Andrey Andreevaf5d5582012-01-25 21:34:47 +020044 public $username;
45 public $password;
46 public $hostname;
47 public $database;
48 public $dbdriver = 'mysql';
49 public $dbprefix = '';
50 public $char_set = 'utf8';
51 public $dbcollat = 'utf8_general_ci';
52 public $autoinit = TRUE; // Whether to automatically initialize the DB
53 public $swap_pre = '';
54 public $port = '';
55 public $pconnect = FALSE;
56 public $conn_id = FALSE;
57 public $result_id = FALSE;
58 public $db_debug = FALSE;
59 public $benchmark = 0;
60 public $query_count = 0;
61 public $bind_marker = '?';
62 public $save_queries = TRUE;
63 public $queries = array();
64 public $query_times = array();
65 public $data_cache = array();
Derek Allard2067d1a2008-11-13 22:59:24 +000066
Andrey Andreevaf5d5582012-01-25 21:34:47 +020067 public $trans_enabled = TRUE;
68 public $trans_strict = TRUE;
69 protected $_trans_depth = 0;
70 protected $_trans_status = TRUE; // Used with transactions to determine if a rollback should occur
Derek Allard2067d1a2008-11-13 22:59:24 +000071
Andrey Andreevaf5d5582012-01-25 21:34:47 +020072 public $cache_on = FALSE;
73 public $cachedir = '';
74 public $cache_autodel = FALSE;
75 public $CACHE; // The cache class object
Derek Allard2067d1a2008-11-13 22:59:24 +000076
Andrey Andreev043f2602012-03-06 20:16:42 +020077 protected $_protect_identifiers = TRUE;
Andrey Andreevaf5d5582012-01-25 21:34:47 +020078 protected $_reserved_identifiers = array('*'); // Identifiers that should NOT be escaped
Derek Allard2067d1a2008-11-13 22:59:24 +000079
Andrey Andreevaf5d5582012-01-25 21:34:47 +020080 public function __construct($params)
Derek Allard2067d1a2008-11-13 22:59:24 +000081 {
82 if (is_array($params))
83 {
84 foreach ($params as $key => $val)
85 {
86 $this->$key = $val;
87 }
88 }
89
90 log_message('debug', 'Database Driver Class Initialized');
91 }
Barry Mienydd671972010-10-04 16:33:58 +020092
Derek Allard2067d1a2008-11-13 22:59:24 +000093 // --------------------------------------------------------------------
94
95 /**
96 * Initialize Database Settings
97 *
Andrey Andreevaf5d5582012-01-25 21:34:47 +020098 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +020099 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200100 public function initialize()
Derek Allard2067d1a2008-11-13 22:59:24 +0000101 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200102 /* If an established connection is available, then there's
103 * no need to connect and select the database.
104 *
105 * Depending on the database driver, conn_id can be either
106 * boolean TRUE, a resource or an object.
107 */
108 if ($this->conn_id)
Derek Allard2067d1a2008-11-13 22:59:24 +0000109 {
110 return TRUE;
111 }
Barry Mienydd671972010-10-04 16:33:58 +0200112
Derek Allard2067d1a2008-11-13 22:59:24 +0000113 // ----------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200114
Derek Allard2067d1a2008-11-13 22:59:24 +0000115 // Connect to the database and set the connection ID
116 $this->conn_id = ($this->pconnect == FALSE) ? $this->db_connect() : $this->db_pconnect();
117
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200118 // No connection resource? Check if there is a failover else throw an error
Derek Allard2067d1a2008-11-13 22:59:24 +0000119 if ( ! $this->conn_id)
120 {
Felix Balfoort5d581b62011-11-29 15:53:01 +0100121 // Check if there is a failover set
122 if ( ! empty($this->failover) && is_array($this->failover))
Derek Allard2067d1a2008-11-13 22:59:24 +0000123 {
Felix Balfoort5d581b62011-11-29 15:53:01 +0100124 // Go over all the failovers
125 foreach ($this->failover as $failover)
126 {
127 // Replace the current settings with those of the failover
128 foreach ($failover as $key => $val)
129 {
130 $this->$key = $val;
131 }
132
133 // Try to connect
134 $this->conn_id = ($this->pconnect == FALSE) ? $this->db_connect() : $this->db_pconnect();
135
136 // If a connection is made break the foreach loop
137 if ($this->conn_id)
138 {
139 break;
140 }
141 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000142 }
Felix Balfoort5d581b62011-11-29 15:53:01 +0100143
144 // We still don't have a connection?
145 if ( ! $this->conn_id)
146 {
147 log_message('error', 'Unable to connect to the database');
148
149 if ($this->db_debug)
150 {
151 $this->display_error('db_unable_to_connect');
152 }
153 return FALSE;
154 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000155 }
156
157 // ----------------------------------------------------------------
158
159 // Select the DB... assuming a database name is specified in the config file
Andrey Andreev82e8ac12012-02-22 19:35:34 +0200160 if ($this->database !== '' && ! $this->db_select())
Derek Allard2067d1a2008-11-13 22:59:24 +0000161 {
Andrey Andreev82e8ac12012-02-22 19:35:34 +0200162 log_message('error', 'Unable to select database: '.$this->database);
Barry Mienydd671972010-10-04 16:33:58 +0200163
Andrey Andreev82e8ac12012-02-22 19:35:34 +0200164 if ($this->db_debug)
Derek Allard2067d1a2008-11-13 22:59:24 +0000165 {
Andrey Andreev82e8ac12012-02-22 19:35:34 +0200166 $this->display_error('db_unable_to_select', $this->database);
Derek Allard2067d1a2008-11-13 22:59:24 +0000167 }
Andrey Andreev82e8ac12012-02-22 19:35:34 +0200168 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000169 }
170
Andrey Andreev82e8ac12012-02-22 19:35:34 +0200171 // Now we set the character set and that's all
Andrey Andreev95bd1d12012-03-12 16:22:28 +0200172 return $this->db_set_charset($this->char_set);
Derek Allard2067d1a2008-11-13 22:59:24 +0000173 }
Barry Mienydd671972010-10-04 16:33:58 +0200174
Derek Allard2067d1a2008-11-13 22:59:24 +0000175 // --------------------------------------------------------------------
176
177 /**
Andrey Andreev2cae1932012-03-23 16:08:41 +0200178 * Reconnect
179 *
180 * Keep / reestablish the db connection if no queries have been
181 * sent for a length of time exceeding the server's idle timeout.
182 *
183 * This is just a dummy method to allow drivers without such
184 * functionality to not declare it, while others will override it.
185 *
186 * @return void
187 */
188 public function reconnect()
189 {
190 }
191
192 // --------------------------------------------------------------------
193
194 /**
Andrey Andreevbee66442012-03-28 15:28:19 +0300195 * Select database
196 *
197 * This is just a dummy method to allow drivers without such
198 * functionality to not declare it, while others will override it.
199 *
200 * @return bool
201 */
202 public function db_select()
203 {
204 return TRUE;
205 }
206
207 // --------------------------------------------------------------------
208
209 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000210 * Set client character set
211 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000212 * @param string
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200213 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +0000214 */
Andrey Andreev95bd1d12012-03-12 16:22:28 +0200215 public function db_set_charset($charset)
Derek Allard2067d1a2008-11-13 22:59:24 +0000216 {
Andrey Andreev95bd1d12012-03-12 16:22:28 +0200217 if (method_exists($this, '_db_set_charset') && ! $this->_db_set_charset($charset))
Derek Allard2067d1a2008-11-13 22:59:24 +0000218 {
Andrey Andreev063f5962012-02-27 12:20:52 +0200219 log_message('error', 'Unable to set database connection charset: '.$charset);
Barry Mienydd671972010-10-04 16:33:58 +0200220
Derek Allard2067d1a2008-11-13 22:59:24 +0000221 if ($this->db_debug)
222 {
Andrey Andreev063f5962012-02-27 12:20:52 +0200223 $this->display_error('db_unable_to_set_charset', $charset);
Derek Allard2067d1a2008-11-13 22:59:24 +0000224 }
Barry Mienydd671972010-10-04 16:33:58 +0200225
Derek Allard2067d1a2008-11-13 22:59:24 +0000226 return FALSE;
227 }
Barry Mienydd671972010-10-04 16:33:58 +0200228
Derek Allard2067d1a2008-11-13 22:59:24 +0000229 return TRUE;
230 }
Barry Mienydd671972010-10-04 16:33:58 +0200231
Derek Allard2067d1a2008-11-13 22:59:24 +0000232 // --------------------------------------------------------------------
233
234 /**
235 * The name of the platform in use (mysql, mssql, etc...)
236 *
Barry Mienydd671972010-10-04 16:33:58 +0200237 * @return string
238 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200239 public function platform()
Derek Allard2067d1a2008-11-13 22:59:24 +0000240 {
241 return $this->dbdriver;
242 }
243
244 // --------------------------------------------------------------------
245
246 /**
Andrey Andreev08856b82012-03-03 03:19:28 +0200247 * Database version number
Derek Allard2067d1a2008-11-13 22:59:24 +0000248 *
Andrey Andreev08856b82012-03-03 03:19:28 +0200249 * Returns a string containing the version of the database being used.
250 * Most drivers will override this method.
Derek Allard2067d1a2008-11-13 22:59:24 +0000251 *
Barry Mienydd671972010-10-04 16:33:58 +0200252 * @return string
253 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200254 public function version()
Derek Allard2067d1a2008-11-13 22:59:24 +0000255 {
Andrey Andreev08856b82012-03-03 03:19:28 +0200256 if (isset($this->data_cache['version']))
257 {
258 return $this->data_cache['version'];
259 }
260
Derek Allard2067d1a2008-11-13 22:59:24 +0000261 if (FALSE === ($sql = $this->_version()))
262 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200263 return ($this->db_debug) ? $this->display_error('db_unsupported_function') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000264 }
Derek Allard3683f772009-12-16 17:32:33 +0000265
Andrey Andreev08856b82012-03-03 03:19:28 +0200266 $query = $this->query($sql);
267 $query = $query->row();
268 return $this->data_cache['version'] = $query->ver;
269 }
Derek Allard3683f772009-12-16 17:32:33 +0000270
Andrey Andreev08856b82012-03-03 03:19:28 +0200271 // --------------------------------------------------------------------
272
273 /**
274 * Version number query string
275 *
276 * @return string
277 */
278 protected function _version()
279 {
280 return 'SELECT VERSION() AS ver';
Derek Allard2067d1a2008-11-13 22:59:24 +0000281 }
Barry Mienydd671972010-10-04 16:33:58 +0200282
Derek Allard2067d1a2008-11-13 22:59:24 +0000283 // --------------------------------------------------------------------
284
285 /**
286 * Execute the query
287 *
288 * Accepts an SQL string as input and returns a result object upon
Andrey Andreev4c202602012-03-06 20:34:52 +0200289 * successful execution of a "read" type query. Returns boolean TRUE
Derek Allard2067d1a2008-11-13 22:59:24 +0000290 * upon successful execution of a "write" type query. Returns boolean
291 * FALSE upon failure, and if the $db_debug variable is set to TRUE
292 * will raise an error.
293 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000294 * @param string An SQL query string
295 * @param array An array of binding data
Barry Mienydd671972010-10-04 16:33:58 +0200296 * @return mixed
297 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200298 public function query($sql, $binds = FALSE, $return_object = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000299 {
300 if ($sql == '')
301 {
Niklas Nilssond2018ee2011-08-30 13:39:42 +0200302 log_message('error', 'Invalid query: '.$sql);
303
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200304 return ($this->db_debug) ? $this->display_error('db_invalid_query') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000305 }
306
307 // Verify table prefix and replace if necessary
Andrey Andreev6202a3c2012-03-28 14:46:24 +0300308 if ($this->dbprefix != '' && $this->swap_pre != '' && $this->dbprefix != $this->swap_pre)
Derek Jonese7792202010-03-02 17:24:46 -0600309 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200310 $sql = preg_replace('/(\W)'.$this->swap_pre.'(\S+?)/', '\\1'.$this->dbprefix.'\\2', $sql);
Derek Allard2067d1a2008-11-13 22:59:24 +0000311 }
Derek Jonese7792202010-03-02 17:24:46 -0600312
Ryan Dialef7474c2012-03-01 16:11:36 -0500313 // Compile binds if needed
314 if ($binds !== FALSE)
315 {
316 $sql = $this->compile_binds($sql, $binds);
317 }
318
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200319 // Is query caching enabled? If the query is a "read type"
Derek Allard2067d1a2008-11-13 22:59:24 +0000320 // we will load the caching class and return the previously
321 // cached query if it exists
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200322 if ($this->cache_on == TRUE && stripos($sql, 'SELECT') !== FALSE && $this->_cache_init())
Derek Allard2067d1a2008-11-13 22:59:24 +0000323 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200324 $this->load_rdriver();
325 if (FALSE !== ($cache = $this->CACHE->read($sql)))
Derek Allard2067d1a2008-11-13 22:59:24 +0000326 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200327 return $cache;
Derek Allard2067d1a2008-11-13 22:59:24 +0000328 }
329 }
Barry Mienydd671972010-10-04 16:33:58 +0200330
Derek Jones37f4b9c2011-07-01 17:56:50 -0500331 // Save the query for debugging
Derek Allard2067d1a2008-11-13 22:59:24 +0000332 if ($this->save_queries == TRUE)
333 {
334 $this->queries[] = $sql;
335 }
Barry Mienydd671972010-10-04 16:33:58 +0200336
Derek Allard2067d1a2008-11-13 22:59:24 +0000337 // Start the Query Timer
338 $time_start = list($sm, $ss) = explode(' ', microtime());
Barry Mienydd671972010-10-04 16:33:58 +0200339
Derek Allard2067d1a2008-11-13 22:59:24 +0000340 // Run the Query
341 if (FALSE === ($this->result_id = $this->simple_query($sql)))
342 {
343 if ($this->save_queries == TRUE)
344 {
345 $this->query_times[] = 0;
346 }
Barry Mienydd671972010-10-04 16:33:58 +0200347
Derek Allard2067d1a2008-11-13 22:59:24 +0000348 // This will trigger a rollback if transactions are being used
349 $this->_trans_status = FALSE;
350
Andrey Andreev4be5de12012-03-02 15:45:41 +0200351 // Grab the error now, as we might run some additional queries before displaying the error
352 $error = $this->error();
Niklas Nilssond2018ee2011-08-30 13:39:42 +0200353
354 // Log errors
Andrey Andreev4be5de12012-03-02 15:45:41 +0200355 log_message('error', 'Query error: '.$error['message']);
Niklas Nilssond2018ee2011-08-30 13:39:42 +0200356
Derek Allard2067d1a2008-11-13 22:59:24 +0000357 if ($this->db_debug)
358 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000359 // We call this function in order to roll-back queries
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200360 // if transactions are enabled. If we don't call this here
Barry Mienydd671972010-10-04 16:33:58 +0200361 // the error message will trigger an exit, causing the
Derek Allard2067d1a2008-11-13 22:59:24 +0000362 // transactions to remain in limbo.
363 $this->trans_complete();
364
Niklas Nilssond2018ee2011-08-30 13:39:42 +0200365 // Display errors
Andrey Andreev27984582012-03-03 04:43:10 +0200366 return $this->display_error(array('Error Number: '.$error['code'], $error['message'], $sql));
Derek Allard2067d1a2008-11-13 22:59:24 +0000367 }
Barry Mienydd671972010-10-04 16:33:58 +0200368
Derek Allard2067d1a2008-11-13 22:59:24 +0000369 return FALSE;
370 }
Barry Mienydd671972010-10-04 16:33:58 +0200371
Derek Allard2067d1a2008-11-13 22:59:24 +0000372 // Stop and aggregate the query time results
373 $time_end = list($em, $es) = explode(' ', microtime());
374 $this->benchmark += ($em + $es) - ($sm + $ss);
375
376 if ($this->save_queries == TRUE)
377 {
378 $this->query_times[] = ($em + $es) - ($sm + $ss);
379 }
Barry Mienydd671972010-10-04 16:33:58 +0200380
Derek Allard2067d1a2008-11-13 22:59:24 +0000381 // Increment the query counter
382 $this->query_count++;
Barry Mienydd671972010-10-04 16:33:58 +0200383
Derek Allard2067d1a2008-11-13 22:59:24 +0000384 // Was the query a "write" type?
385 // If so we'll simply return true
386 if ($this->is_write_type($sql) === TRUE)
387 {
388 // If caching is enabled we'll auto-cleanup any
389 // existing files related to this particular URI
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200390 if ($this->cache_on == TRUE && $this->cache_autodel == TRUE && $this->_cache_init())
Derek Allard2067d1a2008-11-13 22:59:24 +0000391 {
392 $this->CACHE->delete();
393 }
Barry Mienydd671972010-10-04 16:33:58 +0200394
Derek Allard2067d1a2008-11-13 22:59:24 +0000395 return TRUE;
396 }
Barry Mienydd671972010-10-04 16:33:58 +0200397
Derek Allard2067d1a2008-11-13 22:59:24 +0000398 // Return TRUE if we don't need to create a result object
399 // Currently only the Oracle driver uses this when stored
400 // procedures are used
401 if ($return_object !== TRUE)
402 {
403 return TRUE;
404 }
Barry Mienydd671972010-10-04 16:33:58 +0200405
406 // Load and instantiate the result driver
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200407 $driver = $this->load_rdriver();
Andrey Andreev57bdeb62012-03-05 15:59:16 +0200408 $RES = new $driver($this);
Derek Allard2067d1a2008-11-13 22:59:24 +0000409
Derek Allard2067d1a2008-11-13 22:59:24 +0000410 $RES->num_rows = $RES->num_rows();
Barry Mienydd671972010-10-04 16:33:58 +0200411
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200412 // Is query caching enabled? If so, we'll serialize the
Derek Allard2067d1a2008-11-13 22:59:24 +0000413 // result object and save it to a cache file.
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200414 if ($this->cache_on == TRUE && $this->_cache_init())
Derek Allard2067d1a2008-11-13 22:59:24 +0000415 {
416 // We'll create a new instance of the result object
417 // only without the platform specific driver since
418 // we can't use it with cached data (the query result
419 // resource ID won't be any good once we've cached the
420 // result object, so we'll have to compile the data
421 // and save it)
422 $CR = new CI_DB_result();
Derek Allard2067d1a2008-11-13 22:59:24 +0000423 $CR->result_object = $RES->result_object();
424 $CR->result_array = $RES->result_array();
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200425 $CR->num_rows = $RES->num_rows();
Barry Mienydd671972010-10-04 16:33:58 +0200426
Derek Allard2067d1a2008-11-13 22:59:24 +0000427 // Reset these since cached objects can not utilize resource IDs.
428 $CR->conn_id = NULL;
429 $CR->result_id = NULL;
430
431 $this->CACHE->write($sql, $CR);
432 }
Barry Mienydd671972010-10-04 16:33:58 +0200433
Derek Allard2067d1a2008-11-13 22:59:24 +0000434 return $RES;
435 }
436
437 // --------------------------------------------------------------------
438
439 /**
440 * Load the result drivers
441 *
Barry Mienydd671972010-10-04 16:33:58 +0200442 * @return string the name of the result class
443 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200444 public function load_rdriver()
Derek Allard2067d1a2008-11-13 22:59:24 +0000445 {
446 $driver = 'CI_DB_'.$this->dbdriver.'_result';
447
448 if ( ! class_exists($driver))
449 {
Greg Aker3a746652011-04-19 10:59:47 -0500450 include_once(BASEPATH.'database/DB_result.php');
451 include_once(BASEPATH.'database/drivers/'.$this->dbdriver.'/'.$this->dbdriver.'_result.php');
Derek Allard2067d1a2008-11-13 22:59:24 +0000452 }
Barry Mienydd671972010-10-04 16:33:58 +0200453
Derek Allard2067d1a2008-11-13 22:59:24 +0000454 return $driver;
455 }
Barry Mienydd671972010-10-04 16:33:58 +0200456
Derek Allard2067d1a2008-11-13 22:59:24 +0000457 // --------------------------------------------------------------------
458
459 /**
460 * Simple Query
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200461 * This is a simplified version of the query() function. Internally
Derek Allard2067d1a2008-11-13 22:59:24 +0000462 * we only use it when running transaction commands since they do
463 * not require all the features of the main query() function.
464 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000465 * @param string the sql query
Barry Mienydd671972010-10-04 16:33:58 +0200466 * @return mixed
467 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200468 public function simple_query($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000469 {
470 if ( ! $this->conn_id)
471 {
472 $this->initialize();
473 }
474
475 return $this->_execute($sql);
476 }
Barry Mienydd671972010-10-04 16:33:58 +0200477
Derek Allard2067d1a2008-11-13 22:59:24 +0000478 // --------------------------------------------------------------------
479
480 /**
481 * Disable Transactions
482 * This permits transactions to be disabled at run-time.
483 *
Barry Mienydd671972010-10-04 16:33:58 +0200484 * @return void
485 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200486 public function trans_off()
Derek Allard2067d1a2008-11-13 22:59:24 +0000487 {
488 $this->trans_enabled = FALSE;
489 }
490
491 // --------------------------------------------------------------------
492
493 /**
494 * Enable/disable Transaction Strict Mode
495 * When strict mode is enabled, if you are running multiple groups of
496 * transactions, if one group fails all groups will be rolled back.
497 * If strict mode is disabled, each group is treated autonomously, meaning
498 * a failure of one group will not affect any others
499 *
Barry Mienydd671972010-10-04 16:33:58 +0200500 * @return void
501 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200502 public function trans_strict($mode = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000503 {
504 $this->trans_strict = is_bool($mode) ? $mode : TRUE;
505 }
Barry Mienydd671972010-10-04 16:33:58 +0200506
Derek Allard2067d1a2008-11-13 22:59:24 +0000507 // --------------------------------------------------------------------
508
509 /**
510 * Start Transaction
511 *
Barry Mienydd671972010-10-04 16:33:58 +0200512 * @return void
513 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200514 public function trans_start($test_mode = FALSE)
Barry Mienydd671972010-10-04 16:33:58 +0200515 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000516 if ( ! $this->trans_enabled)
517 {
518 return FALSE;
519 }
520
521 // When transactions are nested we only begin/commit/rollback the outermost ones
522 if ($this->_trans_depth > 0)
523 {
524 $this->_trans_depth += 1;
525 return;
526 }
Barry Mienydd671972010-10-04 16:33:58 +0200527
Derek Allard2067d1a2008-11-13 22:59:24 +0000528 $this->trans_begin($test_mode);
Jacob Terry07fcedf2011-11-22 11:21:36 -0500529 $this->_trans_depth += 1;
Derek Allard2067d1a2008-11-13 22:59:24 +0000530 }
531
532 // --------------------------------------------------------------------
533
534 /**
535 * Complete Transaction
536 *
Barry Mienydd671972010-10-04 16:33:58 +0200537 * @return bool
538 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200539 public function trans_complete()
Derek Allard2067d1a2008-11-13 22:59:24 +0000540 {
541 if ( ! $this->trans_enabled)
542 {
543 return FALSE;
544 }
Barry Mienydd671972010-10-04 16:33:58 +0200545
Derek Allard2067d1a2008-11-13 22:59:24 +0000546 // When transactions are nested we only begin/commit/rollback the outermost ones
547 if ($this->_trans_depth > 1)
548 {
549 $this->_trans_depth -= 1;
550 return TRUE;
551 }
Jacob Terry07fcedf2011-11-22 11:21:36 -0500552 else
553 {
554 $this->_trans_depth = 0;
555 }
Barry Mienydd671972010-10-04 16:33:58 +0200556
Derek Allard2067d1a2008-11-13 22:59:24 +0000557 // The query() function will set this flag to FALSE in the event that a query failed
558 if ($this->_trans_status === FALSE)
559 {
560 $this->trans_rollback();
Barry Mienydd671972010-10-04 16:33:58 +0200561
Derek Allard2067d1a2008-11-13 22:59:24 +0000562 // If we are NOT running in strict mode, we will reset
563 // the _trans_status flag so that subsequent groups of transactions
564 // will be permitted.
565 if ($this->trans_strict === FALSE)
566 {
567 $this->_trans_status = TRUE;
568 }
569
570 log_message('debug', 'DB Transaction Failure');
571 return FALSE;
572 }
Barry Mienydd671972010-10-04 16:33:58 +0200573
Derek Allard2067d1a2008-11-13 22:59:24 +0000574 $this->trans_commit();
575 return TRUE;
576 }
577
578 // --------------------------------------------------------------------
579
580 /**
581 * Lets you retrieve the transaction flag to determine if it has failed
582 *
Barry Mienydd671972010-10-04 16:33:58 +0200583 * @return bool
584 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200585 public function trans_status()
Derek Allard2067d1a2008-11-13 22:59:24 +0000586 {
587 return $this->_trans_status;
588 }
589
590 // --------------------------------------------------------------------
591
592 /**
593 * Compile Bindings
594 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000595 * @param string the sql statement
596 * @param array an array of bind data
Barry Mienydd671972010-10-04 16:33:58 +0200597 * @return string
598 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200599 public function compile_binds($sql, $binds)
Derek Allard2067d1a2008-11-13 22:59:24 +0000600 {
601 if (strpos($sql, $this->bind_marker) === FALSE)
602 {
603 return $sql;
604 }
Barry Mienydd671972010-10-04 16:33:58 +0200605
Derek Allard2067d1a2008-11-13 22:59:24 +0000606 if ( ! is_array($binds))
607 {
608 $binds = array($binds);
609 }
Barry Mienydd671972010-10-04 16:33:58 +0200610
Derek Allard2067d1a2008-11-13 22:59:24 +0000611 // Get the sql segments around the bind markers
612 $segments = explode($this->bind_marker, $sql);
613
614 // The count of bind should be 1 less then the count of segments
615 // If there are more bind arguments trim it down
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200616 if (count($binds) >= count($segments))
617 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000618 $binds = array_slice($binds, 0, count($segments)-1);
619 }
620
621 // Construct the binded query
622 $result = $segments[0];
623 $i = 0;
624 foreach ($binds as $bind)
625 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200626 $result .= $this->escape($bind).$segments[++$i];
Derek Allard2067d1a2008-11-13 22:59:24 +0000627 }
628
629 return $result;
630 }
Barry Mienydd671972010-10-04 16:33:58 +0200631
Derek Allard2067d1a2008-11-13 22:59:24 +0000632 // --------------------------------------------------------------------
633
634 /**
635 * Determines if a query is a "write" type.
636 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000637 * @param string An SQL query string
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200638 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200639 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200640 public function is_write_type($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000641 {
Andrey Andreev5fa72982012-03-03 04:13:20 +0200642 return (bool) preg_match('/^\s*"?(SET|INSERT|UPDATE|DELETE|REPLACE|CREATE|DROP|TRUNCATE|LOAD DATA|COPY|ALTER|RENAME|GRANT|REVOKE|LOCK|UNLOCK|OPTIMIZE|REINDEX)\s+/i', $sql);
Derek Allard2067d1a2008-11-13 22:59:24 +0000643 }
Barry Mienydd671972010-10-04 16:33:58 +0200644
Derek Allard2067d1a2008-11-13 22:59:24 +0000645 // --------------------------------------------------------------------
646
647 /**
648 * Calculate the aggregate query elapsed time
649 *
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200650 * @param int The number of decimal places
651 * @return int
Barry Mienydd671972010-10-04 16:33:58 +0200652 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200653 public function elapsed_time($decimals = 6)
Derek Allard2067d1a2008-11-13 22:59:24 +0000654 {
655 return number_format($this->benchmark, $decimals);
656 }
Barry Mienydd671972010-10-04 16:33:58 +0200657
Derek Allard2067d1a2008-11-13 22:59:24 +0000658 // --------------------------------------------------------------------
659
660 /**
661 * Returns the total number of queries
662 *
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200663 * @return int
Barry Mienydd671972010-10-04 16:33:58 +0200664 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200665 public function total_queries()
Derek Allard2067d1a2008-11-13 22:59:24 +0000666 {
667 return $this->query_count;
668 }
Barry Mienydd671972010-10-04 16:33:58 +0200669
Derek Allard2067d1a2008-11-13 22:59:24 +0000670 // --------------------------------------------------------------------
671
672 /**
673 * Returns the last query that was executed
674 *
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200675 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200676 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200677 public function last_query()
Derek Allard2067d1a2008-11-13 22:59:24 +0000678 {
679 return end($this->queries);
680 }
681
682 // --------------------------------------------------------------------
683
684 /**
685 * "Smart" Escape String
686 *
687 * Escapes data based on type
688 * Sets boolean and null types
689 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000690 * @param string
Barry Mienydd671972010-10-04 16:33:58 +0200691 * @return mixed
692 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200693 public function escape($str)
Barry Mienydd671972010-10-04 16:33:58 +0200694 {
Joel Kallman10aa8e62012-03-09 14:54:53 -0500695 if (is_string($str) OR method_exists($str, '__toString'))
Derek Allard2067d1a2008-11-13 22:59:24 +0000696 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200697 return "'".$this->escape_str($str)."'";
Derek Jonesa377bdd2009-02-11 18:55:24 +0000698 }
699 elseif (is_bool($str))
700 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200701 return ($str === FALSE) ? 0 : 1;
Derek Jonesa377bdd2009-02-11 18:55:24 +0000702 }
703 elseif (is_null($str))
704 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200705 return 'NULL';
Derek Jonesa377bdd2009-02-11 18:55:24 +0000706 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000707
708 return $str;
709 }
710
711 // --------------------------------------------------------------------
Derek Jonese7792202010-03-02 17:24:46 -0600712
Derek Jonese4ed5832009-02-20 21:44:59 +0000713 /**
Derek Jonesbdc7fb92009-02-20 21:55:10 +0000714 * Escape LIKE String
Derek Jonese4ed5832009-02-20 21:44:59 +0000715 *
716 * Calls the individual driver for platform
717 * specific escaping for LIKE conditions
Barry Mienydd671972010-10-04 16:33:58 +0200718 *
Derek Jonese4ed5832009-02-20 21:44:59 +0000719 * @param string
720 * @return mixed
721 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200722 public function escape_like_str($str)
Barry Mienydd671972010-10-04 16:33:58 +0200723 {
724 return $this->escape_str($str, TRUE);
Derek Jonese4ed5832009-02-20 21:44:59 +0000725 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000726
Derek Jonese4ed5832009-02-20 21:44:59 +0000727 // --------------------------------------------------------------------
Derek Jonese7792202010-03-02 17:24:46 -0600728
Derek Allard2067d1a2008-11-13 22:59:24 +0000729 /**
730 * Primary
731 *
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200732 * Retrieves the primary key. It assumes that the row in the first
Derek Allard2067d1a2008-11-13 22:59:24 +0000733 * position is the primary key
734 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000735 * @param string the table name
Barry Mienydd671972010-10-04 16:33:58 +0200736 * @return string
737 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200738 public function primary($table = '')
Barry Mienydd671972010-10-04 16:33:58 +0200739 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000740 $fields = $this->list_fields($table);
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200741 return is_array($fields) ? current($fields) : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000742 }
743
744 // --------------------------------------------------------------------
745
746 /**
747 * Returns an array of table names
748 *
Barry Mienydd671972010-10-04 16:33:58 +0200749 * @return array
750 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200751 public function list_tables($constrain_by_prefix = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000752 {
753 // Is there a cached result?
754 if (isset($this->data_cache['table_names']))
755 {
756 return $this->data_cache['table_names'];
757 }
Barry Mienydd671972010-10-04 16:33:58 +0200758
Derek Allard2067d1a2008-11-13 22:59:24 +0000759 if (FALSE === ($sql = $this->_list_tables($constrain_by_prefix)))
760 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200761 return ($this->db_debug) ? $this->display_error('db_unsupported_function') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000762 }
763
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200764 $this->data_cache['table_names'] = array();
Derek Allard2067d1a2008-11-13 22:59:24 +0000765 $query = $this->query($sql);
Barry Mienydd671972010-10-04 16:33:58 +0200766
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200767 foreach ($query->result_array() as $row)
Derek Allard2067d1a2008-11-13 22:59:24 +0000768 {
Andrey Andreev12567e82012-01-25 22:50:33 +0200769 // Do we know from which column to get the table name?
770 if ( ! isset($key))
771 {
Andrey Andreev6781a5f2012-03-28 14:50:51 +0300772 if (isset($row['table_name']))
Andrey Andreev12567e82012-01-25 22:50:33 +0200773 {
774 $key = 'table_name';
775 }
Andrey Andreev6781a5f2012-03-28 14:50:51 +0300776 elseif (isset($row['TABLE_NAME']))
Andrey Andreev12567e82012-01-25 22:50:33 +0200777 {
778 $key = 'TABLE_NAME';
779 }
780 else
781 {
782 /* We have no other choice but to just get the first element's key.
783 * Due to array_shift() accepting it's argument by reference, if
784 * E_STRICT is on, this would trigger a warning. So we'll have to
785 * assign it first.
786 */
787 $key = array_keys($row);
788 $key = array_shift($key);
789 }
790 }
791
792 $this->data_cache['table_names'][] = $row[$key];
Derek Allard2067d1a2008-11-13 22:59:24 +0000793 }
794
Derek Allard2067d1a2008-11-13 22:59:24 +0000795 return $this->data_cache['table_names'];
796 }
Barry Mienydd671972010-10-04 16:33:58 +0200797
Derek Allard2067d1a2008-11-13 22:59:24 +0000798 // --------------------------------------------------------------------
799
800 /**
801 * Determine if a particular table exists
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200802 *
803 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +0000804 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200805 public function table_exists($table_name)
Barry Mienydd671972010-10-04 16:33:58 +0200806 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200807 return in_array($this->protect_identifiers($table_name, TRUE, FALSE, FALSE), $this->list_tables());
Derek Allard2067d1a2008-11-13 22:59:24 +0000808 }
Barry Mienydd671972010-10-04 16:33:58 +0200809
Derek Allard2067d1a2008-11-13 22:59:24 +0000810 // --------------------------------------------------------------------
811
812 /**
813 * Fetch MySQL Field Names
814 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000815 * @param string the table name
Barry Mienydd671972010-10-04 16:33:58 +0200816 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000817 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200818 public function list_fields($table = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000819 {
820 // Is there a cached result?
821 if (isset($this->data_cache['field_names'][$table]))
822 {
823 return $this->data_cache['field_names'][$table];
824 }
Barry Mienydd671972010-10-04 16:33:58 +0200825
Derek Allard2067d1a2008-11-13 22:59:24 +0000826 if ($table == '')
827 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200828 return ($this->db_debug) ? $this->display_error('db_field_param_missing') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000829 }
Barry Mienydd671972010-10-04 16:33:58 +0200830
Greg Aker1edde302010-01-26 00:17:01 +0000831 if (FALSE === ($sql = $this->_list_columns($table)))
Derek Allard2067d1a2008-11-13 22:59:24 +0000832 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200833 return ($this->db_debug) ? $this->display_error('db_unsupported_function') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000834 }
Barry Mienydd671972010-10-04 16:33:58 +0200835
Derek Allard2067d1a2008-11-13 22:59:24 +0000836 $query = $this->query($sql);
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200837 $this->data_cache['field_names'][$table] = array();
Barry Mienydd671972010-10-04 16:33:58 +0200838
Pascal Krietec3a4a8d2011-02-14 13:40:08 -0500839 foreach ($query->result_array() as $row)
Derek Allard2067d1a2008-11-13 22:59:24 +0000840 {
Andrey Andreev12567e82012-01-25 22:50:33 +0200841 // Do we know from where to get the column's name?
842 if ( ! isset($key))
843 {
Andrey Andreev6781a5f2012-03-28 14:50:51 +0300844 if (isset($row['column_name']))
Andrey Andreev12567e82012-01-25 22:50:33 +0200845 {
846 $key = 'column_name';
847 }
Andrey Andreev6781a5f2012-03-28 14:50:51 +0300848 elseif (isset($row['COLUMN_NAME']))
Andrey Andreev12567e82012-01-25 22:50:33 +0200849 {
850 $key = 'COLUMN_NAME';
851 }
852 else
853 {
854 /* We have no other choice but to just get the first element's key.
855 * Due to array_shift() accepting it's argument by reference, if
856 * E_STRICT is on, this would trigger a warning. So we'll have to
857 * assign it first.
858 */
859 $key = array_keys($row);
860 $key = array_shift($key);
861 }
862 }
863
864 $this->data_cache['field_names'][$table][] = $row[$key];
Derek Allard2067d1a2008-11-13 22:59:24 +0000865 }
Barry Mienydd671972010-10-04 16:33:58 +0200866
Derek Allard2067d1a2008-11-13 22:59:24 +0000867 return $this->data_cache['field_names'][$table];
868 }
869
870 // --------------------------------------------------------------------
871
872 /**
873 * Determine if a particular field exists
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200874 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000875 * @param string
876 * @param string
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200877 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +0000878 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200879 public function field_exists($field_name, $table_name)
Barry Mienydd671972010-10-04 16:33:58 +0200880 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200881 return in_array($field_name, $this->list_fields($table_name));
Derek Allard2067d1a2008-11-13 22:59:24 +0000882 }
Barry Mienydd671972010-10-04 16:33:58 +0200883
Derek Allard2067d1a2008-11-13 22:59:24 +0000884 // --------------------------------------------------------------------
885
886 /**
887 * Returns an object with field data
888 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000889 * @param string the table name
Andrey Andreev5d93e132012-03-06 20:36:21 +0200890 * @return object
Barry Mienydd671972010-10-04 16:33:58 +0200891 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200892 public function field_data($table = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000893 {
894 if ($table == '')
895 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200896 return ($this->db_debug) ? $this->display_error('db_field_param_missing') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000897 }
Barry Mienydd671972010-10-04 16:33:58 +0200898
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200899 $query = $this->query($this->_field_data($this->protect_identifiers($table, TRUE, NULL, FALSE)));
Derek Allard2067d1a2008-11-13 22:59:24 +0000900 return $query->field_data();
Barry Mienydd671972010-10-04 16:33:58 +0200901 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000902
903 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200904
Derek Allard2067d1a2008-11-13 22:59:24 +0000905 /**
906 * Generate an insert string
907 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000908 * @param string the table upon which the query will be performed
909 * @param array an associative array data of key/values
Barry Mienydd671972010-10-04 16:33:58 +0200910 * @return string
911 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200912 public function insert_string($table, $data)
Derek Allard2067d1a2008-11-13 22:59:24 +0000913 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200914 $fields = $values = array();
Barry Mienydd671972010-10-04 16:33:58 +0200915
Pascal Krietec3a4a8d2011-02-14 13:40:08 -0500916 foreach ($data as $key => $val)
Derek Allard2067d1a2008-11-13 22:59:24 +0000917 {
918 $fields[] = $this->_escape_identifiers($key);
919 $values[] = $this->escape($val);
920 }
Barry Mienydd671972010-10-04 16:33:58 +0200921
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200922 return $this->_insert($this->protect_identifiers($table, TRUE, NULL, FALSE), $fields, $values);
Barry Mienydd671972010-10-04 16:33:58 +0200923 }
924
Derek Allard2067d1a2008-11-13 22:59:24 +0000925 // --------------------------------------------------------------------
926
927 /**
928 * Generate an update string
929 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000930 * @param string the table upon which the query will be performed
931 * @param array an associative array data of key/values
932 * @param mixed the "where" statement
Barry Mienydd671972010-10-04 16:33:58 +0200933 * @return string
934 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200935 public function update_string($table, $data, $where)
Derek Allard2067d1a2008-11-13 22:59:24 +0000936 {
937 if ($where == '')
938 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200939 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000940 }
Barry Mienydd671972010-10-04 16:33:58 +0200941
Derek Allard2067d1a2008-11-13 22:59:24 +0000942 $fields = array();
Pascal Krietec3a4a8d2011-02-14 13:40:08 -0500943 foreach ($data as $key => $val)
Derek Allard2067d1a2008-11-13 22:59:24 +0000944 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200945 $fields[$this->protect_identifiers($key)] = $this->escape($val);
Derek Allard2067d1a2008-11-13 22:59:24 +0000946 }
947
948 if ( ! is_array($where))
949 {
950 $dest = array($where);
951 }
952 else
953 {
954 $dest = array();
955 foreach ($where as $key => $val)
956 {
957 $prefix = (count($dest) == 0) ? '' : ' AND ';
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200958 $key = $this->protect_identifiers($key);
Barry Mienydd671972010-10-04 16:33:58 +0200959
Derek Allard2067d1a2008-11-13 22:59:24 +0000960 if ($val !== '')
961 {
962 if ( ! $this->_has_operator($key))
963 {
964 $key .= ' =';
965 }
Barry Mienydd671972010-10-04 16:33:58 +0200966
Derek Allard2067d1a2008-11-13 22:59:24 +0000967 $val = ' '.$this->escape($val);
968 }
Barry Mienydd671972010-10-04 16:33:58 +0200969
Derek Allard2067d1a2008-11-13 22:59:24 +0000970 $dest[] = $prefix.$key.$val;
971 }
Barry Mienydd671972010-10-04 16:33:58 +0200972 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000973
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200974 return $this->_update($this->protect_identifiers($table, TRUE, NULL, FALSE), $fields, $dest);
Barry Mienydd671972010-10-04 16:33:58 +0200975 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000976
977 // --------------------------------------------------------------------
978
979 /**
980 * Tests whether the string has an SQL operator
981 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000982 * @param string
983 * @return bool
984 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200985 protected function _has_operator($str)
Derek Allard2067d1a2008-11-13 22:59:24 +0000986 {
Andrey Andreev043f2602012-03-06 20:16:42 +0200987 return (bool) preg_match('/(\s|<|>|!|=|IS NULL|IS NOT NULL)/i', trim($str));
Derek Allard2067d1a2008-11-13 22:59:24 +0000988 }
989
990 // --------------------------------------------------------------------
991
992 /**
993 * Enables a native PHP function to be run, using a platform agnostic wrapper.
994 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000995 * @param string the function name
996 * @param mixed any parameters needed by the function
Barry Mienydd671972010-10-04 16:33:58 +0200997 * @return mixed
998 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +0200999 public function call_function($function)
Derek Allard2067d1a2008-11-13 22:59:24 +00001000 {
1001 $driver = ($this->dbdriver == 'postgre') ? 'pg_' : $this->dbdriver.'_';
Barry Mienydd671972010-10-04 16:33:58 +02001002
Derek Allard2067d1a2008-11-13 22:59:24 +00001003 if (FALSE === strpos($driver, $function))
1004 {
1005 $function = $driver.$function;
1006 }
Barry Mienydd671972010-10-04 16:33:58 +02001007
Derek Allard2067d1a2008-11-13 22:59:24 +00001008 if ( ! function_exists($function))
1009 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001010 return ($this->db_debug) ? $this->display_error('db_unsupported_function') : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001011 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001012
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001013 return (func_num_args() > 1)
1014 ? call_user_func_array($function, array_splice(func_get_args(), 1))
1015 : call_user_func($function);
Derek Allard2067d1a2008-11-13 22:59:24 +00001016 }
1017
1018 // --------------------------------------------------------------------
1019
1020 /**
1021 * Set Cache Directory Path
1022 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001023 * @param string the path to the cache directory
1024 * @return void
Barry Mienydd671972010-10-04 16:33:58 +02001025 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001026 public function cache_set_path($path = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001027 {
1028 $this->cachedir = $path;
1029 }
1030
1031 // --------------------------------------------------------------------
1032
1033 /**
1034 * Enable Query Caching
1035 *
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001036 * @return bool cache_on value
Barry Mienydd671972010-10-04 16:33:58 +02001037 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001038 public function cache_on()
Derek Allard2067d1a2008-11-13 22:59:24 +00001039 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001040 return $this->cache_on = TRUE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001041 }
1042
1043 // --------------------------------------------------------------------
1044
1045 /**
1046 * Disable Query Caching
1047 *
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001048 * @return bool cache_on value
Barry Mienydd671972010-10-04 16:33:58 +02001049 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001050 public function cache_off()
Derek Allard2067d1a2008-11-13 22:59:24 +00001051 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001052 return $this->cache_on = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001053 }
Barry Mienydd671972010-10-04 16:33:58 +02001054
Derek Allard2067d1a2008-11-13 22:59:24 +00001055
1056 // --------------------------------------------------------------------
1057
1058 /**
1059 * Delete the cache files associated with a particular URI
1060 *
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001061 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +02001062 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001063 public function cache_delete($segment_one = '', $segment_two = '')
Derek Allard2067d1a2008-11-13 22:59:24 +00001064 {
Andrey Andreev043f2602012-03-06 20:16:42 +02001065 return ($this->_cache_init())
1066 ? $this->CACHE->delete($segment_one, $segment_two)
1067 : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001068 }
1069
1070 // --------------------------------------------------------------------
1071
1072 /**
1073 * Delete All cache files
1074 *
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001075 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +02001076 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001077 public function cache_delete_all()
Derek Allard2067d1a2008-11-13 22:59:24 +00001078 {
Andrey Andreev043f2602012-03-06 20:16:42 +02001079 return ($this->_cache_init())
1080 ? $this->CACHE->delete_all()
1081 : FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001082 }
1083
1084 // --------------------------------------------------------------------
1085
1086 /**
1087 * Initialize the Cache Class
1088 *
Andrey Andreev4c202602012-03-06 20:34:52 +02001089 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +02001090 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001091 protected function _cache_init()
Derek Allard2067d1a2008-11-13 22:59:24 +00001092 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001093 if (class_exists('CI_DB_Cache'))
Derek Allard2067d1a2008-11-13 22:59:24 +00001094 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001095 if (is_object($this->CACHE))
Derek Allarde37ab382009-02-03 16:13:57 +00001096 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001097 return TRUE;
Derek Allarde37ab382009-02-03 16:13:57 +00001098 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001099 }
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001100 elseif ( ! @include_once(BASEPATH.'database/DB_cache.php'))
1101 {
1102 return $this->cache_off();
1103 }
Derek Allarde37ab382009-02-03 16:13:57 +00001104
Derek Allard2067d1a2008-11-13 22:59:24 +00001105 $this->CACHE = new CI_DB_Cache($this); // pass db object to support multiple db connections and returned db objects
1106 return TRUE;
1107 }
1108
1109 // --------------------------------------------------------------------
1110
1111 /**
1112 * Close DB Connection
1113 *
Barry Mienydd671972010-10-04 16:33:58 +02001114 * @return void
1115 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001116 public function close()
Derek Allard2067d1a2008-11-13 22:59:24 +00001117 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001118 if ($this->conn_id)
Derek Allard2067d1a2008-11-13 22:59:24 +00001119 {
1120 $this->_close($this->conn_id);
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001121 $this->conn_id = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +00001122 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001123 }
Barry Mienydd671972010-10-04 16:33:58 +02001124
Derek Allard2067d1a2008-11-13 22:59:24 +00001125 // --------------------------------------------------------------------
1126
1127 /**
1128 * Display an error message
1129 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001130 * @param string the error message
1131 * @param string any "swap" values
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001132 * @param bool whether to localize the message
Barry Mienydd671972010-10-04 16:33:58 +02001133 * @return string sends the application/error_db.php template
1134 */
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001135 public function display_error($error = '', $swap = '', $native = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001136 {
Derek Jonese7792202010-03-02 17:24:46 -06001137 $LANG =& load_class('Lang', 'core');
Derek Allard2067d1a2008-11-13 22:59:24 +00001138 $LANG->load('db');
1139
1140 $heading = $LANG->line('db_error_heading');
1141
1142 if ($native == TRUE)
1143 {
Andrey Andreev85a99cc2011-09-24 17:17:37 +03001144 $message = (array) $error;
Derek Allard2067d1a2008-11-13 22:59:24 +00001145 }
1146 else
1147 {
1148 $message = ( ! is_array($error)) ? array(str_replace('%s', $swap, $LANG->line($error))) : $error;
1149 }
Barry Mienydd671972010-10-04 16:33:58 +02001150
Pascal Kriete60f8c392010-08-25 18:03:28 +02001151 // Find the most likely culprit of the error by going through
1152 // the backtrace until the source file is no longer in the
1153 // database folder.
Pascal Kriete60f8c392010-08-25 18:03:28 +02001154 $trace = debug_backtrace();
Pascal Krietec3a4a8d2011-02-14 13:40:08 -05001155 foreach ($trace as $call)
Pascal Kriete60f8c392010-08-25 18:03:28 +02001156 {
1157 if (isset($call['file']) && strpos($call['file'], BASEPATH.'database') === FALSE)
1158 {
1159 // Found it - use a relative path for safety
1160 $message[] = 'Filename: '.str_replace(array(BASEPATH, APPPATH), '', $call['file']);
1161 $message[] = 'Line Number: '.$call['line'];
Pascal Kriete60f8c392010-08-25 18:03:28 +02001162 break;
1163 }
1164 }
Barry Mienydd671972010-10-04 16:33:58 +02001165
Derek Jonese7792202010-03-02 17:24:46 -06001166 $error =& load_class('Exceptions', 'core');
Derek Allard2067d1a2008-11-13 22:59:24 +00001167 echo $error->show_error($heading, $message, 'error_db');
1168 exit;
1169 }
1170
1171 // --------------------------------------------------------------------
1172
1173 /**
1174 * Protect Identifiers
1175 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001176 * This function is used extensively by the Active Record class, and by
Barry Mienydd671972010-10-04 16:33:58 +02001177 * a couple functions in this class.
Derek Allard2067d1a2008-11-13 22:59:24 +00001178 * It takes a column or table name (optionally with an alias) and inserts
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001179 * the table prefix onto it. Some logic is necessary in order to deal with
1180 * column names that include the path. Consider a query like this:
Derek Allard2067d1a2008-11-13 22:59:24 +00001181 *
1182 * SELECT * FROM hostname.database.table.column AS c FROM hostname.database.table
1183 *
1184 * Or a query with aliasing:
1185 *
1186 * SELECT m.member_id, m.member_name FROM members AS m
1187 *
1188 * Since the column name can include up to four segments (host, DB, table, column)
1189 * or also have an alias prefix, we need to do a bit of work to figure this out and
1190 * insert the table prefix (if it exists) in the proper position, and escape only
1191 * the correct identifiers.
1192 *
Derek Allard2067d1a2008-11-13 22:59:24 +00001193 * @param string
1194 * @param bool
1195 * @param mixed
1196 * @param bool
1197 * @return string
Barry Mienydd671972010-10-04 16:33:58 +02001198 */
Andrey Andreev032e7ea2012-03-06 19:48:35 +02001199 public function protect_identifiers($item, $prefix_single = FALSE, $protect_identifiers = NULL, $field_exists = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +00001200 {
1201 if ( ! is_bool($protect_identifiers))
1202 {
1203 $protect_identifiers = $this->_protect_identifiers;
1204 }
Derek Allarde37ab382009-02-03 16:13:57 +00001205
1206 if (is_array($item))
1207 {
1208 $escaped_array = array();
Pascal Krietec3a4a8d2011-02-14 13:40:08 -05001209 foreach ($item as $k => $v)
Derek Allarde37ab382009-02-03 16:13:57 +00001210 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +02001211 $escaped_array[$this->protect_identifiers($k)] = $this->protect_identifiers($v);
Derek Allarde37ab382009-02-03 16:13:57 +00001212 }
1213
1214 return $escaped_array;
1215 }
1216
Derek Allard2067d1a2008-11-13 22:59:24 +00001217 // Convert tabs or multiple spaces into single spaces
Derek Jones7b3b96c2009-02-10 21:01:47 +00001218 $item = preg_replace('/[\t ]+/', ' ', $item);
Barry Mienydd671972010-10-04 16:33:58 +02001219
Derek Allard2067d1a2008-11-13 22:59:24 +00001220 // If the item has an alias declaration we remove it and set it aside.
1221 // Basically we remove everything to the right of the first space
Derek Allard2067d1a2008-11-13 22:59:24 +00001222 if (strpos($item, ' ') !== FALSE)
Derek Allard911d3e02008-12-15 14:08:35 +00001223 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001224 $alias = strstr($item, ' ');
Derek Allard2067d1a2008-11-13 22:59:24 +00001225 $item = substr($item, 0, - strlen($alias));
1226 }
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001227 else
1228 {
1229 $alias = '';
1230 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001231
Derek Allard911d3e02008-12-15 14:08:35 +00001232 // This is basically a bug fix for queries that use MAX, MIN, etc.
Barry Mienydd671972010-10-04 16:33:58 +02001233 // If a parenthesis is found we know that we do not need to
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001234 // escape the data or add a prefix. There's probably a more graceful
Derek Allard911d3e02008-12-15 14:08:35 +00001235 // way to deal with this, but I'm not thinking of it -- Rick
1236 if (strpos($item, '(') !== FALSE)
1237 {
1238 return $item.$alias;
1239 }
1240
Derek Allard2067d1a2008-11-13 22:59:24 +00001241 // Break the string apart if it contains periods, then insert the table prefix
1242 // in the correct location, assuming the period doesn't indicate that we're dealing
1243 // with an alias. While we're at it, we will escape the components
1244 if (strpos($item, '.') !== FALSE)
1245 {
1246 $parts = explode('.', $item);
Barry Mienydd671972010-10-04 16:33:58 +02001247
Derek Allard2067d1a2008-11-13 22:59:24 +00001248 // Does the first segment of the exploded item match
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001249 // one of the aliases previously identified? If so,
Derek Allard2067d1a2008-11-13 22:59:24 +00001250 // we have nothing more to do other than escape the item
1251 if (in_array($parts[0], $this->ar_aliased_tables))
Derek Allard911d3e02008-12-15 14:08:35 +00001252 {
Derek Allard2067d1a2008-11-13 22:59:24 +00001253 if ($protect_identifiers === TRUE)
1254 {
1255 foreach ($parts as $key => $val)
1256 {
1257 if ( ! in_array($val, $this->_reserved_identifiers))
1258 {
1259 $parts[$key] = $this->_escape_identifiers($val);
1260 }
1261 }
Barry Mienydd671972010-10-04 16:33:58 +02001262
Derek Allard2067d1a2008-11-13 22:59:24 +00001263 $item = implode('.', $parts);
Barry Mienydd671972010-10-04 16:33:58 +02001264 }
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001265
Derek Allard2067d1a2008-11-13 22:59:24 +00001266 return $item.$alias;
1267 }
Barry Mienydd671972010-10-04 16:33:58 +02001268
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001269 // Is there a table prefix defined in the config file? If not, no need to do anything
Derek Allard2067d1a2008-11-13 22:59:24 +00001270 if ($this->dbprefix != '')
1271 {
1272 // We now add the table prefix based on some logic.
1273 // Do we have 4 segments (hostname.database.table.column)?
1274 // If so, we add the table prefix to the column name in the 3rd segment.
1275 if (isset($parts[3]))
1276 {
1277 $i = 2;
1278 }
1279 // Do we have 3 segments (database.table.column)?
1280 // If so, we add the table prefix to the column name in 2nd position
1281 elseif (isset($parts[2]))
1282 {
1283 $i = 1;
1284 }
1285 // Do we have 2 segments (table.column)?
1286 // If so, we add the table prefix to the column name in 1st segment
1287 else
1288 {
1289 $i = 0;
1290 }
Barry Mienydd671972010-10-04 16:33:58 +02001291
Derek Allard2067d1a2008-11-13 22:59:24 +00001292 // This flag is set when the supplied $item does not contain a field name.
1293 // This can happen when this function is being called from a JOIN.
1294 if ($field_exists == FALSE)
1295 {
1296 $i++;
1297 }
Barry Mienydd671972010-10-04 16:33:58 +02001298
Derek Jones55acc8b2009-07-11 03:38:13 +00001299 // Verify table prefix and replace if necessary
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001300 if ($this->swap_pre != '' && strpos($parts[$i], $this->swap_pre) === 0)
Derek Jones55acc8b2009-07-11 03:38:13 +00001301 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001302 $parts[$i] = preg_replace('/^'.$this->swap_pre.'(\S+?)/', $this->dbprefix.'\\1', $parts[$i]);
Derek Jones55acc8b2009-07-11 03:38:13 +00001303 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001304 // We only add the table prefix if it does not already exist
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001305 elseif (strpos($parts[$i], $this->dbprefix) !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001306 {
1307 $parts[$i] = $this->dbprefix.$parts[$i];
1308 }
Barry Mienydd671972010-10-04 16:33:58 +02001309
Derek Allard2067d1a2008-11-13 22:59:24 +00001310 // Put the parts back together
1311 $item = implode('.', $parts);
1312 }
Barry Mienydd671972010-10-04 16:33:58 +02001313
Derek Allard2067d1a2008-11-13 22:59:24 +00001314 if ($protect_identifiers === TRUE)
1315 {
1316 $item = $this->_escape_identifiers($item);
1317 }
Barry Mienydd671972010-10-04 16:33:58 +02001318
Derek Allard2067d1a2008-11-13 22:59:24 +00001319 return $item.$alias;
1320 }
1321
Andrey Andreev4c202602012-03-06 20:34:52 +02001322 // Is there a table prefix? If not, no need to insert it
Derek Allard2067d1a2008-11-13 22:59:24 +00001323 if ($this->dbprefix != '')
1324 {
Derek Jones55acc8b2009-07-11 03:38:13 +00001325 // Verify table prefix and replace if necessary
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001326 if ($this->swap_pre != '' && strpos($item, $this->swap_pre) === 0)
Derek Jones55acc8b2009-07-11 03:38:13 +00001327 {
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001328 $item = preg_replace('/^'.$this->swap_pre.'(\S+?)/', $this->dbprefix.'\\1', $item);
Derek Jones55acc8b2009-07-11 03:38:13 +00001329 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001330 // Do we prefix an item with no segments?
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001331 elseif ($prefix_single == TRUE && strpos($item, $this->dbprefix) !== 0)
Derek Allard2067d1a2008-11-13 22:59:24 +00001332 {
1333 $item = $this->dbprefix.$item;
Barry Mienydd671972010-10-04 16:33:58 +02001334 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001335 }
1336
Andrey Andreevaf5d5582012-01-25 21:34:47 +02001337 if ($protect_identifiers === TRUE && ! in_array($item, $this->_reserved_identifiers))
Derek Allard2067d1a2008-11-13 22:59:24 +00001338 {
1339 $item = $this->_escape_identifiers($item);
1340 }
Barry Mienydd671972010-10-04 16:33:58 +02001341
Derek Allard2067d1a2008-11-13 22:59:24 +00001342 return $item.$alias;
1343 }
Andrey Andreev4c598362012-03-06 14:58:37 +02001344
Túbal Martín511f2252011-11-24 14:43:45 +01001345 // --------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +00001346
Túbal Martín511f2252011-11-24 14:43:45 +01001347 /**
1348 * Dummy method that allows Active Record class to be disabled
1349 *
1350 * This function is used extensively by every db driver.
1351 *
Túbal Martín511f2252011-11-24 14:43:45 +01001352 * @return void
1353 */
Timothy Warren7eeda532012-03-19 16:01:55 -04001354 abstract protected function _reset_select();
Derek Allard2067d1a2008-11-13 22:59:24 +00001355
1356}
1357
Derek Allard2067d1a2008-11-13 22:59:24 +00001358/* End of file DB_driver.php */
Andrey Andreev35bbb1a2012-03-20 15:33:55 +02001359/* Location: ./system/database/DB_driver.php */