Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 1 | <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Greg Aker | 741de1c | 2010-11-10 14:52:57 -0600 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.1.6 or newer |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 6 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 7 | * NOTICE OF LICENSE |
| 8 | * |
| 9 | * Licensed under the Open Software License version 3.0 |
| 10 | * |
| 11 | * 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 Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 19 | * @package CodeIgniter |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 20 | * @author EllisLab Dev Team |
Greg Aker | 0defe5d | 2012-01-01 18:46:41 -0600 | [diff] [blame] | 21 | * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/) |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 22 | * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 23 | * @link http://codeigniter.com |
| 24 | * @since Version 1.0 |
| 25 | * @filesource |
| 26 | */ |
| 27 | |
| 28 | // ------------------------------------------------------------------------ |
| 29 | |
| 30 | /** |
| 31 | * Database Driver Class |
| 32 | * |
| 33 | * This is the platform-independent base DB implementation class. |
| 34 | * This class will not be called directly. Rather, the adapter |
| 35 | * class for the specific database will extend and instantiate it. |
| 36 | * |
| 37 | * @package CodeIgniter |
| 38 | * @subpackage Drivers |
| 39 | * @category Database |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 40 | * @author EllisLab Dev Team |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 41 | * @link http://codeigniter.com/user_guide/database/ |
| 42 | */ |
| 43 | class CI_DB_driver { |
| 44 | |
| 45 | var $username; |
| 46 | var $password; |
| 47 | var $hostname; |
| 48 | var $database; |
| 49 | var $dbdriver = 'mysql'; |
| 50 | var $dbprefix = ''; |
| 51 | var $char_set = 'utf8'; |
| 52 | var $dbcollat = 'utf8_general_ci'; |
| 53 | var $autoinit = TRUE; // Whether to automatically initialize the DB |
| 54 | var $swap_pre = ''; |
| 55 | var $port = ''; |
| 56 | var $pconnect = FALSE; |
| 57 | var $conn_id = FALSE; |
| 58 | var $result_id = FALSE; |
| 59 | var $db_debug = FALSE; |
| 60 | var $benchmark = 0; |
| 61 | var $query_count = 0; |
| 62 | var $bind_marker = '?'; |
| 63 | var $save_queries = TRUE; |
| 64 | var $queries = array(); |
| 65 | var $query_times = array(); |
| 66 | var $data_cache = array(); |
| 67 | var $trans_enabled = TRUE; |
| 68 | var $trans_strict = TRUE; |
| 69 | var $_trans_depth = 0; |
| 70 | var $_trans_status = TRUE; // Used with transactions to determine if a rollback should occur |
| 71 | var $cache_on = FALSE; |
| 72 | var $cachedir = ''; |
| 73 | var $cache_autodel = FALSE; |
| 74 | var $CACHE; // The cache class object |
| 75 | |
| 76 | // Private variables |
| 77 | var $_protect_identifiers = TRUE; |
| 78 | var $_reserved_identifiers = array('*'); // Identifiers that should NOT be escaped |
| 79 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 80 | /** |
Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 81 | * Constructor. Accepts one parameter containing the database |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 82 | * connection settings. |
| 83 | * |
| 84 | * @param array |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 85 | */ |
Timothy Warren | a2097a0 | 2011-10-10 10:10:46 -0400 | [diff] [blame] | 86 | function __construct($params) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 87 | { |
| 88 | if (is_array($params)) |
| 89 | { |
| 90 | foreach ($params as $key => $val) |
| 91 | { |
| 92 | $this->$key = $val; |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | log_message('debug', 'Database Driver Class Initialized'); |
| 97 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 98 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 99 | // -------------------------------------------------------------------- |
| 100 | |
| 101 | /** |
| 102 | * Initialize Database Settings |
| 103 | * |
Andrey Andreev | 82e8ac1 | 2012-02-22 19:35:34 +0200 | [diff] [blame] | 104 | * @return bool |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 105 | */ |
Andrey Andreev | 82e8ac1 | 2012-02-22 19:35:34 +0200 | [diff] [blame] | 106 | public function initialize() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 107 | { |
| 108 | // If an existing connection resource is available |
| 109 | // there is no need to connect and select the database |
| 110 | if (is_resource($this->conn_id) OR is_object($this->conn_id)) |
| 111 | { |
| 112 | return TRUE; |
| 113 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 114 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 115 | // ---------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 116 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 117 | // Connect to the database and set the connection ID |
| 118 | $this->conn_id = ($this->pconnect == FALSE) ? $this->db_connect() : $this->db_pconnect(); |
| 119 | |
Andrey Andreev | 82e8ac1 | 2012-02-22 19:35:34 +0200 | [diff] [blame] | 120 | // No connection resource? Check if there is a failover else throw an error |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 121 | if ( ! $this->conn_id) |
| 122 | { |
Felix Balfoort | 5d581b6 | 2011-11-29 15:53:01 +0100 | [diff] [blame] | 123 | // Check if there is a failover set |
| 124 | if ( ! empty($this->failover) && is_array($this->failover)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 125 | { |
Felix Balfoort | 5d581b6 | 2011-11-29 15:53:01 +0100 | [diff] [blame] | 126 | // Go over all the failovers |
| 127 | foreach ($this->failover as $failover) |
| 128 | { |
| 129 | // Replace the current settings with those of the failover |
| 130 | foreach ($failover as $key => $val) |
| 131 | { |
| 132 | $this->$key = $val; |
| 133 | } |
| 134 | |
| 135 | // Try to connect |
| 136 | $this->conn_id = ($this->pconnect == FALSE) ? $this->db_connect() : $this->db_pconnect(); |
| 137 | |
| 138 | // If a connection is made break the foreach loop |
| 139 | if ($this->conn_id) |
| 140 | { |
| 141 | break; |
| 142 | } |
| 143 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 144 | } |
Felix Balfoort | 5d581b6 | 2011-11-29 15:53:01 +0100 | [diff] [blame] | 145 | |
| 146 | // We still don't have a connection? |
| 147 | if ( ! $this->conn_id) |
| 148 | { |
| 149 | log_message('error', 'Unable to connect to the database'); |
| 150 | |
| 151 | if ($this->db_debug) |
| 152 | { |
| 153 | $this->display_error('db_unable_to_connect'); |
| 154 | } |
| 155 | return FALSE; |
| 156 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | // ---------------------------------------------------------------- |
| 160 | |
| 161 | // Select the DB... assuming a database name is specified in the config file |
Andrey Andreev | 82e8ac1 | 2012-02-22 19:35:34 +0200 | [diff] [blame] | 162 | if ($this->database !== '' && ! $this->db_select()) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 163 | { |
Andrey Andreev | 82e8ac1 | 2012-02-22 19:35:34 +0200 | [diff] [blame] | 164 | log_message('error', 'Unable to select database: '.$this->database); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 165 | |
Andrey Andreev | 82e8ac1 | 2012-02-22 19:35:34 +0200 | [diff] [blame] | 166 | if ($this->db_debug) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 167 | { |
Andrey Andreev | 82e8ac1 | 2012-02-22 19:35:34 +0200 | [diff] [blame] | 168 | $this->display_error('db_unable_to_select', $this->database); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 169 | } |
Andrey Andreev | 82e8ac1 | 2012-02-22 19:35:34 +0200 | [diff] [blame] | 170 | return FALSE; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 171 | } |
| 172 | |
Andrey Andreev | 82e8ac1 | 2012-02-22 19:35:34 +0200 | [diff] [blame] | 173 | // Now we set the character set and that's all |
| 174 | return $this->db_set_charset($this->char_set, $this->dbcollat); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 175 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 176 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 177 | // -------------------------------------------------------------------- |
| 178 | |
| 179 | /** |
| 180 | * Set client character set |
| 181 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 182 | * @param string |
| 183 | * @param string |
Andrey Andreev | 063f596 | 2012-02-27 12:20:52 +0200 | [diff] [blame] | 184 | * @return bool |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 185 | */ |
Andrey Andreev | 063f596 | 2012-02-27 12:20:52 +0200 | [diff] [blame] | 186 | public function db_set_charset($charset, $collation = '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 187 | { |
Andrey Andreev | 063f596 | 2012-02-27 12:20:52 +0200 | [diff] [blame] | 188 | if (method_exists($this, '_db_set_charset') && ! $this->_db_set_charset($charset, $collation)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 189 | { |
Andrey Andreev | 063f596 | 2012-02-27 12:20:52 +0200 | [diff] [blame] | 190 | log_message('error', 'Unable to set database connection charset: '.$charset); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 191 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 192 | if ($this->db_debug) |
| 193 | { |
Andrey Andreev | 063f596 | 2012-02-27 12:20:52 +0200 | [diff] [blame] | 194 | $this->display_error('db_unable_to_set_charset', $charset); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 195 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 196 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 197 | return FALSE; |
| 198 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 199 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 200 | return TRUE; |
| 201 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 202 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 203 | // -------------------------------------------------------------------- |
| 204 | |
| 205 | /** |
| 206 | * The name of the platform in use (mysql, mssql, etc...) |
| 207 | * |
| 208 | * @access public |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 209 | * @return string |
| 210 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 211 | function platform() |
| 212 | { |
| 213 | return $this->dbdriver; |
| 214 | } |
| 215 | |
| 216 | // -------------------------------------------------------------------- |
| 217 | |
| 218 | /** |
Andrey Andreev | 08856b8 | 2012-03-03 03:19:28 +0200 | [diff] [blame] | 219 | * Database version number |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 220 | * |
Andrey Andreev | 08856b8 | 2012-03-03 03:19:28 +0200 | [diff] [blame] | 221 | * Returns a string containing the version of the database being used. |
| 222 | * Most drivers will override this method. |
| 223 | * |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 224 | * @return string |
| 225 | */ |
Andrey Andreev | 08856b8 | 2012-03-03 03:19:28 +0200 | [diff] [blame] | 226 | public function version() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 227 | { |
Andrey Andreev | 08856b8 | 2012-03-03 03:19:28 +0200 | [diff] [blame] | 228 | if (isset($this->data_cache['version'])) |
| 229 | { |
| 230 | return $this->data_cache['version']; |
| 231 | } |
| 232 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 233 | if (FALSE === ($sql = $this->_version())) |
| 234 | { |
Andrey Andreev | 08856b8 | 2012-03-03 03:19:28 +0200 | [diff] [blame] | 235 | return ($this->db_debug) ? $this->display_error('db_unsupported_function') : FALSE; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 236 | } |
Derek Allard | 3683f77 | 2009-12-16 17:32:33 +0000 | [diff] [blame] | 237 | |
Andrey Andreev | 08856b8 | 2012-03-03 03:19:28 +0200 | [diff] [blame] | 238 | $query = $this->query($sql); |
| 239 | $query = $query->row(); |
| 240 | return $this->data_cache['version'] = $query->ver; |
| 241 | } |
Derek Allard | 3683f77 | 2009-12-16 17:32:33 +0000 | [diff] [blame] | 242 | |
Andrey Andreev | 08856b8 | 2012-03-03 03:19:28 +0200 | [diff] [blame] | 243 | // -------------------------------------------------------------------- |
| 244 | |
| 245 | /** |
| 246 | * Version number query string |
| 247 | * |
| 248 | * @return string |
| 249 | */ |
| 250 | protected function _version() |
| 251 | { |
| 252 | return 'SELECT VERSION() AS ver'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 253 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 254 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 255 | // -------------------------------------------------------------------- |
| 256 | |
| 257 | /** |
| 258 | * Execute the query |
| 259 | * |
| 260 | * Accepts an SQL string as input and returns a result object upon |
Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 261 | * successful execution of a "read" type query. Returns boolean TRUE |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 262 | * upon successful execution of a "write" type query. Returns boolean |
| 263 | * FALSE upon failure, and if the $db_debug variable is set to TRUE |
| 264 | * will raise an error. |
| 265 | * |
| 266 | * @access public |
| 267 | * @param string An SQL query string |
| 268 | * @param array An array of binding data |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 269 | * @return mixed |
| 270 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 271 | function query($sql, $binds = FALSE, $return_object = TRUE) |
| 272 | { |
| 273 | if ($sql == '') |
| 274 | { |
Niklas Nilsson | d2018ee | 2011-08-30 13:39:42 +0200 | [diff] [blame] | 275 | log_message('error', 'Invalid query: '.$sql); |
| 276 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 277 | if ($this->db_debug) |
| 278 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 279 | return $this->display_error('db_invalid_query'); |
| 280 | } |
| 281 | return FALSE; |
| 282 | } |
| 283 | |
| 284 | // Verify table prefix and replace if necessary |
| 285 | if ( ($this->dbprefix != '' AND $this->swap_pre != '') AND ($this->dbprefix != $this->swap_pre) ) |
Derek Jones | e779220 | 2010-03-02 17:24:46 -0600 | [diff] [blame] | 286 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 287 | $sql = preg_replace("/(\W)".$this->swap_pre."(\S+?)/", "\\1".$this->dbprefix."\\2", $sql); |
| 288 | } |
Derek Jones | e779220 | 2010-03-02 17:24:46 -0600 | [diff] [blame] | 289 | |
Ryan Dial | ef7474c | 2012-03-01 16:11:36 -0500 | [diff] [blame] | 290 | // Compile binds if needed |
| 291 | if ($binds !== FALSE) |
| 292 | { |
| 293 | $sql = $this->compile_binds($sql, $binds); |
| 294 | } |
| 295 | |
Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 296 | // Is query caching enabled? If the query is a "read type" |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 297 | // we will load the caching class and return the previously |
| 298 | // cached query if it exists |
| 299 | if ($this->cache_on == TRUE AND stristr($sql, 'SELECT')) |
| 300 | { |
| 301 | if ($this->_cache_init()) |
| 302 | { |
| 303 | $this->load_rdriver(); |
| 304 | if (FALSE !== ($cache = $this->CACHE->read($sql))) |
| 305 | { |
| 306 | return $cache; |
| 307 | } |
| 308 | } |
| 309 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 310 | |
Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 311 | // Save the query for debugging |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 312 | if ($this->save_queries == TRUE) |
| 313 | { |
| 314 | $this->queries[] = $sql; |
| 315 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 316 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 317 | // Start the Query Timer |
| 318 | $time_start = list($sm, $ss) = explode(' ', microtime()); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 319 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 320 | // Run the Query |
| 321 | if (FALSE === ($this->result_id = $this->simple_query($sql))) |
| 322 | { |
| 323 | if ($this->save_queries == TRUE) |
| 324 | { |
| 325 | $this->query_times[] = 0; |
| 326 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 327 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 328 | // This will trigger a rollback if transactions are being used |
| 329 | $this->_trans_status = FALSE; |
| 330 | |
Andrey Andreev | 4be5de1 | 2012-03-02 15:45:41 +0200 | [diff] [blame] | 331 | // Grab the error now, as we might run some additional queries before displaying the error |
| 332 | $error = $this->error(); |
Niklas Nilsson | d2018ee | 2011-08-30 13:39:42 +0200 | [diff] [blame] | 333 | |
| 334 | // Log errors |
Andrey Andreev | 4be5de1 | 2012-03-02 15:45:41 +0200 | [diff] [blame] | 335 | log_message('error', 'Query error: '.$error['message']); |
Niklas Nilsson | d2018ee | 2011-08-30 13:39:42 +0200 | [diff] [blame] | 336 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 337 | if ($this->db_debug) |
| 338 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 339 | // We call this function in order to roll-back queries |
Andrey Andreev | 4be5de1 | 2012-03-02 15:45:41 +0200 | [diff] [blame] | 340 | // if transactions are enabled. If we don't call this here |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 341 | // the error message will trigger an exit, causing the |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 342 | // transactions to remain in limbo. |
| 343 | $this->trans_complete(); |
| 344 | |
Niklas Nilsson | d2018ee | 2011-08-30 13:39:42 +0200 | [diff] [blame] | 345 | // Display errors |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 346 | return $this->display_error( |
Andrey Andreev | 4be5de1 | 2012-03-02 15:45:41 +0200 | [diff] [blame] | 347 | array( |
| 348 | 'Error Number: '.$error['code'], |
| 349 | $error['message'], |
| 350 | $sql |
| 351 | ) |
| 352 | ); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 353 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 354 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 355 | return FALSE; |
| 356 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 357 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 358 | // Stop and aggregate the query time results |
| 359 | $time_end = list($em, $es) = explode(' ', microtime()); |
| 360 | $this->benchmark += ($em + $es) - ($sm + $ss); |
| 361 | |
| 362 | if ($this->save_queries == TRUE) |
| 363 | { |
| 364 | $this->query_times[] = ($em + $es) - ($sm + $ss); |
| 365 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 366 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 367 | // Increment the query counter |
| 368 | $this->query_count++; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 369 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 370 | // Was the query a "write" type? |
| 371 | // If so we'll simply return true |
| 372 | if ($this->is_write_type($sql) === TRUE) |
| 373 | { |
| 374 | // If caching is enabled we'll auto-cleanup any |
| 375 | // existing files related to this particular URI |
| 376 | if ($this->cache_on == TRUE AND $this->cache_autodel == TRUE AND $this->_cache_init()) |
| 377 | { |
| 378 | $this->CACHE->delete(); |
| 379 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 380 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 381 | return TRUE; |
| 382 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 383 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 384 | // Return TRUE if we don't need to create a result object |
| 385 | // Currently only the Oracle driver uses this when stored |
| 386 | // procedures are used |
| 387 | if ($return_object !== TRUE) |
| 388 | { |
| 389 | return TRUE; |
| 390 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 391 | |
| 392 | // Load and instantiate the result driver |
Andrey Andreev | 57bdeb6 | 2012-03-05 15:59:16 +0200 | [diff] [blame^] | 393 | $driver = $this->load_rdriver(); |
| 394 | $RES = new $driver($this); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 395 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 396 | $RES->num_rows = $RES->num_rows(); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 397 | |
Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 398 | // Is query caching enabled? If so, we'll serialize the |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 399 | // result object and save it to a cache file. |
| 400 | if ($this->cache_on == TRUE AND $this->_cache_init()) |
| 401 | { |
| 402 | // We'll create a new instance of the result object |
| 403 | // only without the platform specific driver since |
| 404 | // we can't use it with cached data (the query result |
| 405 | // resource ID won't be any good once we've cached the |
| 406 | // result object, so we'll have to compile the data |
| 407 | // and save it) |
| 408 | $CR = new CI_DB_result(); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 409 | $CR->num_rows = $RES->num_rows(); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 410 | $CR->result_object = $RES->result_object(); |
| 411 | $CR->result_array = $RES->result_array(); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 412 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 413 | // Reset these since cached objects can not utilize resource IDs. |
| 414 | $CR->conn_id = NULL; |
| 415 | $CR->result_id = NULL; |
| 416 | |
| 417 | $this->CACHE->write($sql, $CR); |
| 418 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 419 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 420 | return $RES; |
| 421 | } |
| 422 | |
| 423 | // -------------------------------------------------------------------- |
| 424 | |
| 425 | /** |
| 426 | * Load the result drivers |
| 427 | * |
| 428 | * @access public |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 429 | * @return string the name of the result class |
| 430 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 431 | function load_rdriver() |
| 432 | { |
| 433 | $driver = 'CI_DB_'.$this->dbdriver.'_result'; |
| 434 | |
| 435 | if ( ! class_exists($driver)) |
| 436 | { |
Greg Aker | 3a74665 | 2011-04-19 10:59:47 -0500 | [diff] [blame] | 437 | include_once(BASEPATH.'database/DB_result.php'); |
| 438 | include_once(BASEPATH.'database/drivers/'.$this->dbdriver.'/'.$this->dbdriver.'_result.php'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 439 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 440 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 441 | return $driver; |
| 442 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 443 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 444 | // -------------------------------------------------------------------- |
| 445 | |
| 446 | /** |
| 447 | * Simple Query |
Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 448 | * This is a simplified version of the query() function. Internally |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 449 | * we only use it when running transaction commands since they do |
| 450 | * not require all the features of the main query() function. |
| 451 | * |
| 452 | * @access public |
| 453 | * @param string the sql query |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 454 | * @return mixed |
| 455 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 456 | function simple_query($sql) |
| 457 | { |
| 458 | if ( ! $this->conn_id) |
| 459 | { |
| 460 | $this->initialize(); |
| 461 | } |
| 462 | |
| 463 | return $this->_execute($sql); |
| 464 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 465 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 466 | // -------------------------------------------------------------------- |
| 467 | |
| 468 | /** |
| 469 | * Disable Transactions |
| 470 | * This permits transactions to be disabled at run-time. |
| 471 | * |
| 472 | * @access public |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 473 | * @return void |
| 474 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 475 | function trans_off() |
| 476 | { |
| 477 | $this->trans_enabled = FALSE; |
| 478 | } |
| 479 | |
| 480 | // -------------------------------------------------------------------- |
| 481 | |
| 482 | /** |
| 483 | * Enable/disable Transaction Strict Mode |
| 484 | * When strict mode is enabled, if you are running multiple groups of |
| 485 | * transactions, if one group fails all groups will be rolled back. |
| 486 | * If strict mode is disabled, each group is treated autonomously, meaning |
| 487 | * a failure of one group will not affect any others |
| 488 | * |
| 489 | * @access public |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 490 | * @return void |
| 491 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 492 | function trans_strict($mode = TRUE) |
| 493 | { |
| 494 | $this->trans_strict = is_bool($mode) ? $mode : TRUE; |
| 495 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 496 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 497 | // -------------------------------------------------------------------- |
| 498 | |
| 499 | /** |
| 500 | * Start Transaction |
| 501 | * |
| 502 | * @access public |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 503 | * @return void |
| 504 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 505 | function trans_start($test_mode = FALSE) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 506 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 507 | if ( ! $this->trans_enabled) |
| 508 | { |
| 509 | return FALSE; |
| 510 | } |
| 511 | |
| 512 | // When transactions are nested we only begin/commit/rollback the outermost ones |
| 513 | if ($this->_trans_depth > 0) |
| 514 | { |
| 515 | $this->_trans_depth += 1; |
| 516 | return; |
| 517 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 518 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 519 | $this->trans_begin($test_mode); |
Jacob Terry | 07fcedf | 2011-11-22 11:21:36 -0500 | [diff] [blame] | 520 | $this->_trans_depth += 1; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 521 | } |
| 522 | |
| 523 | // -------------------------------------------------------------------- |
| 524 | |
| 525 | /** |
| 526 | * Complete Transaction |
| 527 | * |
| 528 | * @access public |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 529 | * @return bool |
| 530 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 531 | function trans_complete() |
| 532 | { |
| 533 | if ( ! $this->trans_enabled) |
| 534 | { |
| 535 | return FALSE; |
| 536 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 537 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 538 | // When transactions are nested we only begin/commit/rollback the outermost ones |
| 539 | if ($this->_trans_depth > 1) |
| 540 | { |
| 541 | $this->_trans_depth -= 1; |
| 542 | return TRUE; |
| 543 | } |
Jacob Terry | 07fcedf | 2011-11-22 11:21:36 -0500 | [diff] [blame] | 544 | else |
| 545 | { |
| 546 | $this->_trans_depth = 0; |
| 547 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 548 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 549 | // The query() function will set this flag to FALSE in the event that a query failed |
| 550 | if ($this->_trans_status === FALSE) |
| 551 | { |
| 552 | $this->trans_rollback(); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 553 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 554 | // If we are NOT running in strict mode, we will reset |
| 555 | // the _trans_status flag so that subsequent groups of transactions |
| 556 | // will be permitted. |
| 557 | if ($this->trans_strict === FALSE) |
| 558 | { |
| 559 | $this->_trans_status = TRUE; |
| 560 | } |
| 561 | |
| 562 | log_message('debug', 'DB Transaction Failure'); |
| 563 | return FALSE; |
| 564 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 565 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 566 | $this->trans_commit(); |
| 567 | return TRUE; |
| 568 | } |
| 569 | |
| 570 | // -------------------------------------------------------------------- |
| 571 | |
| 572 | /** |
| 573 | * Lets you retrieve the transaction flag to determine if it has failed |
| 574 | * |
| 575 | * @access public |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 576 | * @return bool |
| 577 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 578 | function trans_status() |
| 579 | { |
| 580 | return $this->_trans_status; |
| 581 | } |
| 582 | |
| 583 | // -------------------------------------------------------------------- |
| 584 | |
| 585 | /** |
| 586 | * Compile Bindings |
| 587 | * |
| 588 | * @access public |
| 589 | * @param string the sql statement |
| 590 | * @param array an array of bind data |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 591 | * @return string |
| 592 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 593 | function compile_binds($sql, $binds) |
| 594 | { |
| 595 | if (strpos($sql, $this->bind_marker) === FALSE) |
| 596 | { |
| 597 | return $sql; |
| 598 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 599 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 600 | if ( ! is_array($binds)) |
| 601 | { |
| 602 | $binds = array($binds); |
| 603 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 604 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 605 | // Get the sql segments around the bind markers |
| 606 | $segments = explode($this->bind_marker, $sql); |
| 607 | |
| 608 | // The count of bind should be 1 less then the count of segments |
| 609 | // If there are more bind arguments trim it down |
| 610 | if (count($binds) >= count($segments)) { |
| 611 | $binds = array_slice($binds, 0, count($segments)-1); |
| 612 | } |
| 613 | |
| 614 | // Construct the binded query |
| 615 | $result = $segments[0]; |
| 616 | $i = 0; |
| 617 | foreach ($binds as $bind) |
| 618 | { |
| 619 | $result .= $this->escape($bind); |
| 620 | $result .= $segments[++$i]; |
| 621 | } |
| 622 | |
| 623 | return $result; |
| 624 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 625 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 626 | // -------------------------------------------------------------------- |
| 627 | |
| 628 | /** |
| 629 | * Determines if a query is a "write" type. |
| 630 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 631 | * @param string An SQL query string |
Andrey Andreev | 67f71a4 | 2012-03-01 16:18:42 +0200 | [diff] [blame] | 632 | * @return bool |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 633 | */ |
Andrey Andreev | 67f71a4 | 2012-03-01 16:18:42 +0200 | [diff] [blame] | 634 | public function is_write_type($sql) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 635 | { |
Andrey Andreev | 5fa7298 | 2012-03-03 04:13:20 +0200 | [diff] [blame] | 636 | 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 Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 637 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 638 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 639 | // -------------------------------------------------------------------- |
| 640 | |
| 641 | /** |
| 642 | * Calculate the aggregate query elapsed time |
| 643 | * |
| 644 | * @access public |
| 645 | * @param integer The number of decimal places |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 646 | * @return integer |
| 647 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 648 | function elapsed_time($decimals = 6) |
| 649 | { |
| 650 | return number_format($this->benchmark, $decimals); |
| 651 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 652 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 653 | // -------------------------------------------------------------------- |
| 654 | |
| 655 | /** |
| 656 | * Returns the total number of queries |
| 657 | * |
| 658 | * @access public |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 659 | * @return integer |
| 660 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 661 | function total_queries() |
| 662 | { |
| 663 | return $this->query_count; |
| 664 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 665 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 666 | // -------------------------------------------------------------------- |
| 667 | |
| 668 | /** |
| 669 | * Returns the last query that was executed |
| 670 | * |
| 671 | * @access public |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 672 | * @return void |
| 673 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 674 | function last_query() |
| 675 | { |
| 676 | return end($this->queries); |
| 677 | } |
| 678 | |
| 679 | // -------------------------------------------------------------------- |
| 680 | |
| 681 | /** |
| 682 | * "Smart" Escape String |
| 683 | * |
| 684 | * Escapes data based on type |
| 685 | * Sets boolean and null types |
| 686 | * |
| 687 | * @access public |
| 688 | * @param string |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 689 | * @return mixed |
| 690 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 691 | function escape($str) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 692 | { |
Derek Jones | a377bdd | 2009-02-11 18:55:24 +0000 | [diff] [blame] | 693 | if (is_string($str)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 694 | { |
Derek Jones | a377bdd | 2009-02-11 18:55:24 +0000 | [diff] [blame] | 695 | $str = "'".$this->escape_str($str)."'"; |
| 696 | } |
| 697 | elseif (is_bool($str)) |
| 698 | { |
| 699 | $str = ($str === FALSE) ? 0 : 1; |
| 700 | } |
| 701 | elseif (is_null($str)) |
| 702 | { |
| 703 | $str = 'NULL'; |
| 704 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 705 | |
| 706 | return $str; |
| 707 | } |
| 708 | |
| 709 | // -------------------------------------------------------------------- |
Derek Jones | e779220 | 2010-03-02 17:24:46 -0600 | [diff] [blame] | 710 | |
Derek Jones | e4ed583 | 2009-02-20 21:44:59 +0000 | [diff] [blame] | 711 | /** |
Derek Jones | bdc7fb9 | 2009-02-20 21:55:10 +0000 | [diff] [blame] | 712 | * Escape LIKE String |
Derek Jones | e4ed583 | 2009-02-20 21:44:59 +0000 | [diff] [blame] | 713 | * |
| 714 | * Calls the individual driver for platform |
| 715 | * specific escaping for LIKE conditions |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 716 | * |
Derek Jones | e4ed583 | 2009-02-20 21:44:59 +0000 | [diff] [blame] | 717 | * @access public |
| 718 | * @param string |
| 719 | * @return mixed |
| 720 | */ |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 721 | function escape_like_str($str) |
| 722 | { |
| 723 | return $this->escape_str($str, TRUE); |
Derek Jones | e4ed583 | 2009-02-20 21:44:59 +0000 | [diff] [blame] | 724 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 725 | |
Derek Jones | e4ed583 | 2009-02-20 21:44:59 +0000 | [diff] [blame] | 726 | // -------------------------------------------------------------------- |
Derek Jones | e779220 | 2010-03-02 17:24:46 -0600 | [diff] [blame] | 727 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 728 | /** |
| 729 | * Primary |
| 730 | * |
Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 731 | * Retrieves the primary key. It assumes that the row in the first |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 732 | * position is the primary key |
| 733 | * |
| 734 | * @access public |
| 735 | * @param string the table name |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 736 | * @return string |
| 737 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 738 | function primary($table = '') |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 739 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 740 | $fields = $this->list_fields($table); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 741 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 742 | if ( ! is_array($fields)) |
| 743 | { |
| 744 | return FALSE; |
| 745 | } |
| 746 | |
| 747 | return current($fields); |
| 748 | } |
| 749 | |
| 750 | // -------------------------------------------------------------------- |
| 751 | |
| 752 | /** |
| 753 | * Returns an array of table names |
| 754 | * |
| 755 | * @access public |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 756 | * @return array |
| 757 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 758 | function list_tables($constrain_by_prefix = FALSE) |
| 759 | { |
| 760 | // Is there a cached result? |
| 761 | if (isset($this->data_cache['table_names'])) |
| 762 | { |
| 763 | return $this->data_cache['table_names']; |
| 764 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 765 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 766 | if (FALSE === ($sql = $this->_list_tables($constrain_by_prefix))) |
| 767 | { |
| 768 | if ($this->db_debug) |
| 769 | { |
| 770 | return $this->display_error('db_unsupported_function'); |
| 771 | } |
| 772 | return FALSE; |
| 773 | } |
| 774 | |
| 775 | $retval = array(); |
| 776 | $query = $this->query($sql); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 777 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 778 | if ($query->num_rows() > 0) |
| 779 | { |
Taufan Aditya | 1820933 | 2012-02-09 16:07:27 +0700 | [diff] [blame] | 780 | $table = FALSE; |
| 781 | $rows = $query->result_array(); |
| 782 | $key = (($row = current($rows)) && in_array('table_name', array_map('strtolower', array_keys($row)))); |
| 783 | |
| 784 | if ($key) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 785 | { |
Taufan Aditya | 1820933 | 2012-02-09 16:07:27 +0700 | [diff] [blame] | 786 | $table = array_key_exists('TABLE_NAME', $row) ? 'TABLE_NAME' : 'table_name'; |
| 787 | } |
| 788 | |
| 789 | foreach ($rows as $row) |
| 790 | { |
| 791 | $retval[] = ( ! $table) ? current($row) : $row[$table]; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 792 | } |
| 793 | } |
| 794 | |
| 795 | $this->data_cache['table_names'] = $retval; |
Taufan Aditya | 1820933 | 2012-02-09 16:07:27 +0700 | [diff] [blame] | 796 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 797 | return $this->data_cache['table_names']; |
| 798 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 799 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 800 | // -------------------------------------------------------------------- |
| 801 | |
| 802 | /** |
| 803 | * Determine if a particular table exists |
| 804 | * @access public |
| 805 | * @return boolean |
| 806 | */ |
| 807 | function table_exists($table_name) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 808 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 809 | return ( ! in_array($this->_protect_identifiers($table_name, TRUE, FALSE, FALSE), $this->list_tables())) ? FALSE : TRUE; |
| 810 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 811 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 812 | // -------------------------------------------------------------------- |
| 813 | |
| 814 | /** |
| 815 | * Fetch MySQL Field Names |
| 816 | * |
| 817 | * @access public |
| 818 | * @param string the table name |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 819 | * @return array |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 820 | */ |
| 821 | function list_fields($table = '') |
| 822 | { |
| 823 | // Is there a cached result? |
| 824 | if (isset($this->data_cache['field_names'][$table])) |
| 825 | { |
| 826 | return $this->data_cache['field_names'][$table]; |
| 827 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 828 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 829 | if ($table == '') |
| 830 | { |
| 831 | if ($this->db_debug) |
| 832 | { |
| 833 | return $this->display_error('db_field_param_missing'); |
| 834 | } |
| 835 | return FALSE; |
| 836 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 837 | |
Greg Aker | 1edde30 | 2010-01-26 00:17:01 +0000 | [diff] [blame] | 838 | if (FALSE === ($sql = $this->_list_columns($table))) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 839 | { |
| 840 | if ($this->db_debug) |
| 841 | { |
| 842 | return $this->display_error('db_unsupported_function'); |
| 843 | } |
| 844 | return FALSE; |
| 845 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 846 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 847 | $query = $this->query($sql); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 848 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 849 | $retval = array(); |
Pascal Kriete | c3a4a8d | 2011-02-14 13:40:08 -0500 | [diff] [blame] | 850 | foreach ($query->result_array() as $row) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 851 | { |
| 852 | if (isset($row['COLUMN_NAME'])) |
| 853 | { |
| 854 | $retval[] = $row['COLUMN_NAME']; |
| 855 | } |
| 856 | else |
| 857 | { |
| 858 | $retval[] = current($row); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 859 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 860 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 861 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 862 | $this->data_cache['field_names'][$table] = $retval; |
| 863 | return $this->data_cache['field_names'][$table]; |
| 864 | } |
| 865 | |
| 866 | // -------------------------------------------------------------------- |
| 867 | |
| 868 | /** |
| 869 | * Determine if a particular field exists |
| 870 | * @access public |
| 871 | * @param string |
| 872 | * @param string |
| 873 | * @return boolean |
| 874 | */ |
| 875 | function field_exists($field_name, $table_name) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 876 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 877 | return ( ! in_array($field_name, $this->list_fields($table_name))) ? FALSE : TRUE; |
| 878 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 879 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 880 | // -------------------------------------------------------------------- |
| 881 | |
| 882 | /** |
| 883 | * Returns an object with field data |
| 884 | * |
| 885 | * @access public |
| 886 | * @param string the table name |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 887 | * @return object |
| 888 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 889 | function field_data($table = '') |
| 890 | { |
| 891 | if ($table == '') |
| 892 | { |
| 893 | if ($this->db_debug) |
| 894 | { |
| 895 | return $this->display_error('db_field_param_missing'); |
| 896 | } |
| 897 | return FALSE; |
| 898 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 899 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 900 | $query = $this->query($this->_field_data($this->_protect_identifiers($table, TRUE, NULL, FALSE))); |
| 901 | |
| 902 | return $query->field_data(); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 903 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 904 | |
| 905 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 906 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 907 | /** |
| 908 | * Generate an insert string |
| 909 | * |
| 910 | * @access public |
| 911 | * @param string the table upon which the query will be performed |
| 912 | * @param array an associative array data of key/values |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 913 | * @return string |
| 914 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 915 | function insert_string($table, $data) |
| 916 | { |
| 917 | $fields = array(); |
| 918 | $values = array(); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 919 | |
Pascal Kriete | c3a4a8d | 2011-02-14 13:40:08 -0500 | [diff] [blame] | 920 | foreach ($data as $key => $val) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 921 | { |
| 922 | $fields[] = $this->_escape_identifiers($key); |
| 923 | $values[] = $this->escape($val); |
| 924 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 925 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 926 | return $this->_insert($this->_protect_identifiers($table, TRUE, NULL, FALSE), $fields, $values); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 927 | } |
| 928 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 929 | // -------------------------------------------------------------------- |
| 930 | |
| 931 | /** |
| 932 | * Generate an update string |
| 933 | * |
| 934 | * @access public |
| 935 | * @param string the table upon which the query will be performed |
| 936 | * @param array an associative array data of key/values |
| 937 | * @param mixed the "where" statement |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 938 | * @return string |
| 939 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 940 | function update_string($table, $data, $where) |
| 941 | { |
| 942 | if ($where == '') |
| 943 | { |
| 944 | return false; |
| 945 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 946 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 947 | $fields = array(); |
Pascal Kriete | c3a4a8d | 2011-02-14 13:40:08 -0500 | [diff] [blame] | 948 | foreach ($data as $key => $val) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 949 | { |
| 950 | $fields[$this->_protect_identifiers($key)] = $this->escape($val); |
| 951 | } |
| 952 | |
| 953 | if ( ! is_array($where)) |
| 954 | { |
| 955 | $dest = array($where); |
| 956 | } |
| 957 | else |
| 958 | { |
| 959 | $dest = array(); |
| 960 | foreach ($where as $key => $val) |
| 961 | { |
| 962 | $prefix = (count($dest) == 0) ? '' : ' AND '; |
Andrey Andreev | dc46d99 | 2011-09-24 16:25:23 +0300 | [diff] [blame] | 963 | $key = $this->_protect_identifiers($key); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 964 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 965 | if ($val !== '') |
| 966 | { |
| 967 | if ( ! $this->_has_operator($key)) |
| 968 | { |
| 969 | $key .= ' ='; |
| 970 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 971 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 972 | $val = ' '.$this->escape($val); |
| 973 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 974 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 975 | $dest[] = $prefix.$key.$val; |
| 976 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 977 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 978 | |
| 979 | return $this->_update($this->_protect_identifiers($table, TRUE, NULL, FALSE), $fields, $dest); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 980 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 981 | |
| 982 | // -------------------------------------------------------------------- |
| 983 | |
| 984 | /** |
| 985 | * Tests whether the string has an SQL operator |
| 986 | * |
| 987 | * @access private |
| 988 | * @param string |
| 989 | * @return bool |
| 990 | */ |
| 991 | function _has_operator($str) |
| 992 | { |
| 993 | $str = trim($str); |
| 994 | if ( ! preg_match("/(\s|<|>|!|=|is null|is not null)/i", $str)) |
| 995 | { |
| 996 | return FALSE; |
| 997 | } |
| 998 | |
| 999 | return TRUE; |
| 1000 | } |
| 1001 | |
| 1002 | // -------------------------------------------------------------------- |
| 1003 | |
| 1004 | /** |
| 1005 | * Enables a native PHP function to be run, using a platform agnostic wrapper. |
| 1006 | * |
| 1007 | * @access public |
| 1008 | * @param string the function name |
| 1009 | * @param mixed any parameters needed by the function |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1010 | * @return mixed |
| 1011 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1012 | function call_function($function) |
| 1013 | { |
| 1014 | $driver = ($this->dbdriver == 'postgre') ? 'pg_' : $this->dbdriver.'_'; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1015 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1016 | if (FALSE === strpos($driver, $function)) |
| 1017 | { |
| 1018 | $function = $driver.$function; |
| 1019 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1020 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1021 | if ( ! function_exists($function)) |
| 1022 | { |
| 1023 | if ($this->db_debug) |
| 1024 | { |
| 1025 | return $this->display_error('db_unsupported_function'); |
| 1026 | } |
| 1027 | return FALSE; |
| 1028 | } |
| 1029 | else |
| 1030 | { |
| 1031 | $args = (func_num_args() > 1) ? array_splice(func_get_args(), 1) : null; |
| 1032 | |
Repox | 71b7809 | 2011-12-01 09:19:43 +0100 | [diff] [blame] | 1033 | if (is_null($args)) |
| 1034 | { |
| 1035 | return call_user_func($function); |
| 1036 | } |
| 1037 | else |
| 1038 | { |
| 1039 | return call_user_func_array($function, $args); |
| 1040 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1041 | } |
| 1042 | } |
| 1043 | |
| 1044 | // -------------------------------------------------------------------- |
| 1045 | |
| 1046 | /** |
| 1047 | * Set Cache Directory Path |
| 1048 | * |
| 1049 | * @access public |
| 1050 | * @param string the path to the cache directory |
| 1051 | * @return void |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1052 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1053 | function cache_set_path($path = '') |
| 1054 | { |
| 1055 | $this->cachedir = $path; |
| 1056 | } |
| 1057 | |
| 1058 | // -------------------------------------------------------------------- |
| 1059 | |
| 1060 | /** |
| 1061 | * Enable Query Caching |
| 1062 | * |
| 1063 | * @access public |
| 1064 | * @return void |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1065 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1066 | function cache_on() |
| 1067 | { |
| 1068 | $this->cache_on = TRUE; |
| 1069 | return TRUE; |
| 1070 | } |
| 1071 | |
| 1072 | // -------------------------------------------------------------------- |
| 1073 | |
| 1074 | /** |
| 1075 | * Disable Query Caching |
| 1076 | * |
| 1077 | * @access public |
| 1078 | * @return void |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1079 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1080 | function cache_off() |
| 1081 | { |
| 1082 | $this->cache_on = FALSE; |
| 1083 | return FALSE; |
| 1084 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1085 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1086 | |
| 1087 | // -------------------------------------------------------------------- |
| 1088 | |
| 1089 | /** |
| 1090 | * Delete the cache files associated with a particular URI |
| 1091 | * |
| 1092 | * @access public |
| 1093 | * @return void |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1094 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1095 | function cache_delete($segment_one = '', $segment_two = '') |
| 1096 | { |
| 1097 | if ( ! $this->_cache_init()) |
| 1098 | { |
| 1099 | return FALSE; |
| 1100 | } |
| 1101 | return $this->CACHE->delete($segment_one, $segment_two); |
| 1102 | } |
| 1103 | |
| 1104 | // -------------------------------------------------------------------- |
| 1105 | |
| 1106 | /** |
| 1107 | * Delete All cache files |
| 1108 | * |
| 1109 | * @access public |
| 1110 | * @return void |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1111 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1112 | function cache_delete_all() |
| 1113 | { |
| 1114 | if ( ! $this->_cache_init()) |
| 1115 | { |
| 1116 | return FALSE; |
| 1117 | } |
| 1118 | |
| 1119 | return $this->CACHE->delete_all(); |
| 1120 | } |
| 1121 | |
| 1122 | // -------------------------------------------------------------------- |
| 1123 | |
| 1124 | /** |
| 1125 | * Initialize the Cache Class |
| 1126 | * |
| 1127 | * @access private |
| 1128 | * @return void |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1129 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1130 | function _cache_init() |
| 1131 | { |
| 1132 | if (is_object($this->CACHE) AND class_exists('CI_DB_Cache')) |
| 1133 | { |
| 1134 | return TRUE; |
| 1135 | } |
Derek Allard | e37ab38 | 2009-02-03 16:13:57 +0000 | [diff] [blame] | 1136 | |
| 1137 | if ( ! class_exists('CI_DB_Cache')) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1138 | { |
Greg Aker | 3a74665 | 2011-04-19 10:59:47 -0500 | [diff] [blame] | 1139 | if ( ! @include(BASEPATH.'database/DB_cache.php')) |
Derek Allard | e37ab38 | 2009-02-03 16:13:57 +0000 | [diff] [blame] | 1140 | { |
| 1141 | return $this->cache_off(); |
| 1142 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1143 | } |
Derek Allard | e37ab38 | 2009-02-03 16:13:57 +0000 | [diff] [blame] | 1144 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1145 | $this->CACHE = new CI_DB_Cache($this); // pass db object to support multiple db connections and returned db objects |
| 1146 | return TRUE; |
| 1147 | } |
| 1148 | |
| 1149 | // -------------------------------------------------------------------- |
| 1150 | |
| 1151 | /** |
| 1152 | * Close DB Connection |
| 1153 | * |
| 1154 | * @access public |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1155 | * @return void |
| 1156 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1157 | function close() |
| 1158 | { |
| 1159 | if (is_resource($this->conn_id) OR is_object($this->conn_id)) |
| 1160 | { |
| 1161 | $this->_close($this->conn_id); |
| 1162 | } |
| 1163 | $this->conn_id = FALSE; |
| 1164 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1165 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1166 | // -------------------------------------------------------------------- |
| 1167 | |
| 1168 | /** |
| 1169 | * Display an error message |
| 1170 | * |
| 1171 | * @access public |
| 1172 | * @param string the error message |
| 1173 | * @param string any "swap" values |
| 1174 | * @param boolean whether to localize the message |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1175 | * @return string sends the application/error_db.php template |
| 1176 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1177 | function display_error($error = '', $swap = '', $native = FALSE) |
| 1178 | { |
Derek Jones | e779220 | 2010-03-02 17:24:46 -0600 | [diff] [blame] | 1179 | $LANG =& load_class('Lang', 'core'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1180 | $LANG->load('db'); |
| 1181 | |
| 1182 | $heading = $LANG->line('db_error_heading'); |
| 1183 | |
| 1184 | if ($native == TRUE) |
| 1185 | { |
Andrey Andreev | 85a99cc | 2011-09-24 17:17:37 +0300 | [diff] [blame] | 1186 | $message = (array) $error; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1187 | } |
| 1188 | else |
| 1189 | { |
| 1190 | $message = ( ! is_array($error)) ? array(str_replace('%s', $swap, $LANG->line($error))) : $error; |
| 1191 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1192 | |
Pascal Kriete | 60f8c39 | 2010-08-25 18:03:28 +0200 | [diff] [blame] | 1193 | // Find the most likely culprit of the error by going through |
| 1194 | // the backtrace until the source file is no longer in the |
| 1195 | // database folder. |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1196 | |
Pascal Kriete | 60f8c39 | 2010-08-25 18:03:28 +0200 | [diff] [blame] | 1197 | $trace = debug_backtrace(); |
| 1198 | |
Pascal Kriete | c3a4a8d | 2011-02-14 13:40:08 -0500 | [diff] [blame] | 1199 | foreach ($trace as $call) |
Pascal Kriete | 60f8c39 | 2010-08-25 18:03:28 +0200 | [diff] [blame] | 1200 | { |
| 1201 | if (isset($call['file']) && strpos($call['file'], BASEPATH.'database') === FALSE) |
| 1202 | { |
| 1203 | // Found it - use a relative path for safety |
| 1204 | $message[] = 'Filename: '.str_replace(array(BASEPATH, APPPATH), '', $call['file']); |
| 1205 | $message[] = 'Line Number: '.$call['line']; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1206 | |
Pascal Kriete | 60f8c39 | 2010-08-25 18:03:28 +0200 | [diff] [blame] | 1207 | break; |
| 1208 | } |
| 1209 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1210 | |
Derek Jones | e779220 | 2010-03-02 17:24:46 -0600 | [diff] [blame] | 1211 | $error =& load_class('Exceptions', 'core'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1212 | echo $error->show_error($heading, $message, 'error_db'); |
| 1213 | exit; |
| 1214 | } |
| 1215 | |
| 1216 | // -------------------------------------------------------------------- |
| 1217 | |
| 1218 | /** |
| 1219 | * Protect Identifiers |
| 1220 | * |
| 1221 | * This function adds backticks if appropriate based on db type |
| 1222 | * |
| 1223 | * @access private |
| 1224 | * @param mixed the item to escape |
| 1225 | * @return mixed the item with backticks |
| 1226 | */ |
| 1227 | function protect_identifiers($item, $prefix_single = FALSE) |
| 1228 | { |
| 1229 | return $this->_protect_identifiers($item, $prefix_single); |
| 1230 | } |
| 1231 | |
| 1232 | // -------------------------------------------------------------------- |
| 1233 | |
| 1234 | /** |
| 1235 | * Protect Identifiers |
| 1236 | * |
| 1237 | * This function is used extensively by the Active Record class, and by |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1238 | * a couple functions in this class. |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1239 | * It takes a column or table name (optionally with an alias) and inserts |
Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 1240 | * the table prefix onto it. Some logic is necessary in order to deal with |
| 1241 | * column names that include the path. Consider a query like this: |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1242 | * |
| 1243 | * SELECT * FROM hostname.database.table.column AS c FROM hostname.database.table |
| 1244 | * |
| 1245 | * Or a query with aliasing: |
| 1246 | * |
| 1247 | * SELECT m.member_id, m.member_name FROM members AS m |
| 1248 | * |
| 1249 | * Since the column name can include up to four segments (host, DB, table, column) |
| 1250 | * or also have an alias prefix, we need to do a bit of work to figure this out and |
| 1251 | * insert the table prefix (if it exists) in the proper position, and escape only |
| 1252 | * the correct identifiers. |
| 1253 | * |
| 1254 | * @access private |
| 1255 | * @param string |
| 1256 | * @param bool |
| 1257 | * @param mixed |
| 1258 | * @param bool |
| 1259 | * @return string |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1260 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1261 | function _protect_identifiers($item, $prefix_single = FALSE, $protect_identifiers = NULL, $field_exists = TRUE) |
| 1262 | { |
| 1263 | if ( ! is_bool($protect_identifiers)) |
| 1264 | { |
| 1265 | $protect_identifiers = $this->_protect_identifiers; |
| 1266 | } |
Derek Allard | e37ab38 | 2009-02-03 16:13:57 +0000 | [diff] [blame] | 1267 | |
| 1268 | if (is_array($item)) |
| 1269 | { |
| 1270 | $escaped_array = array(); |
| 1271 | |
Pascal Kriete | c3a4a8d | 2011-02-14 13:40:08 -0500 | [diff] [blame] | 1272 | foreach ($item as $k => $v) |
Derek Allard | e37ab38 | 2009-02-03 16:13:57 +0000 | [diff] [blame] | 1273 | { |
| 1274 | $escaped_array[$this->_protect_identifiers($k)] = $this->_protect_identifiers($v); |
| 1275 | } |
| 1276 | |
| 1277 | return $escaped_array; |
| 1278 | } |
| 1279 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1280 | // Convert tabs or multiple spaces into single spaces |
Derek Jones | 7b3b96c | 2009-02-10 21:01:47 +0000 | [diff] [blame] | 1281 | $item = preg_replace('/[\t ]+/', ' ', $item); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1282 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1283 | // If the item has an alias declaration we remove it and set it aside. |
| 1284 | // Basically we remove everything to the right of the first space |
| 1285 | $alias = ''; |
| 1286 | if (strpos($item, ' ') !== FALSE) |
Derek Allard | 911d3e0 | 2008-12-15 14:08:35 +0000 | [diff] [blame] | 1287 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1288 | $alias = strstr($item, " "); |
| 1289 | $item = substr($item, 0, - strlen($alias)); |
| 1290 | } |
| 1291 | |
Derek Allard | 911d3e0 | 2008-12-15 14:08:35 +0000 | [diff] [blame] | 1292 | // This is basically a bug fix for queries that use MAX, MIN, etc. |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1293 | // If a parenthesis is found we know that we do not need to |
Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 1294 | // escape the data or add a prefix. There's probably a more graceful |
Derek Allard | 911d3e0 | 2008-12-15 14:08:35 +0000 | [diff] [blame] | 1295 | // way to deal with this, but I'm not thinking of it -- Rick |
| 1296 | if (strpos($item, '(') !== FALSE) |
| 1297 | { |
| 1298 | return $item.$alias; |
| 1299 | } |
| 1300 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1301 | // Break the string apart if it contains periods, then insert the table prefix |
| 1302 | // in the correct location, assuming the period doesn't indicate that we're dealing |
| 1303 | // with an alias. While we're at it, we will escape the components |
| 1304 | if (strpos($item, '.') !== FALSE) |
| 1305 | { |
| 1306 | $parts = explode('.', $item); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1307 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1308 | // Does the first segment of the exploded item match |
Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 1309 | // one of the aliases previously identified? If so, |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1310 | // we have nothing more to do other than escape the item |
| 1311 | if (in_array($parts[0], $this->ar_aliased_tables)) |
Derek Allard | 911d3e0 | 2008-12-15 14:08:35 +0000 | [diff] [blame] | 1312 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1313 | if ($protect_identifiers === TRUE) |
| 1314 | { |
| 1315 | foreach ($parts as $key => $val) |
| 1316 | { |
| 1317 | if ( ! in_array($val, $this->_reserved_identifiers)) |
| 1318 | { |
| 1319 | $parts[$key] = $this->_escape_identifiers($val); |
| 1320 | } |
| 1321 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1322 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1323 | $item = implode('.', $parts); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1324 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1325 | return $item.$alias; |
| 1326 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1327 | |
Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 1328 | // Is there a table prefix defined in the config file? If not, no need to do anything |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1329 | if ($this->dbprefix != '') |
| 1330 | { |
| 1331 | // We now add the table prefix based on some logic. |
| 1332 | // Do we have 4 segments (hostname.database.table.column)? |
| 1333 | // If so, we add the table prefix to the column name in the 3rd segment. |
| 1334 | if (isset($parts[3])) |
| 1335 | { |
| 1336 | $i = 2; |
| 1337 | } |
| 1338 | // Do we have 3 segments (database.table.column)? |
| 1339 | // If so, we add the table prefix to the column name in 2nd position |
| 1340 | elseif (isset($parts[2])) |
| 1341 | { |
| 1342 | $i = 1; |
| 1343 | } |
| 1344 | // Do we have 2 segments (table.column)? |
| 1345 | // If so, we add the table prefix to the column name in 1st segment |
| 1346 | else |
| 1347 | { |
| 1348 | $i = 0; |
| 1349 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1350 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1351 | // This flag is set when the supplied $item does not contain a field name. |
| 1352 | // This can happen when this function is being called from a JOIN. |
| 1353 | if ($field_exists == FALSE) |
| 1354 | { |
| 1355 | $i++; |
| 1356 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1357 | |
Derek Jones | 55acc8b | 2009-07-11 03:38:13 +0000 | [diff] [blame] | 1358 | // Verify table prefix and replace if necessary |
| 1359 | if ($this->swap_pre != '' && strncmp($parts[$i], $this->swap_pre, strlen($this->swap_pre)) === 0) |
| 1360 | { |
| 1361 | $parts[$i] = preg_replace("/^".$this->swap_pre."(\S+?)/", $this->dbprefix."\\1", $parts[$i]); |
| 1362 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1363 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1364 | // We only add the table prefix if it does not already exist |
| 1365 | if (substr($parts[$i], 0, strlen($this->dbprefix)) != $this->dbprefix) |
| 1366 | { |
| 1367 | $parts[$i] = $this->dbprefix.$parts[$i]; |
| 1368 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1369 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1370 | // Put the parts back together |
| 1371 | $item = implode('.', $parts); |
| 1372 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1373 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1374 | if ($protect_identifiers === TRUE) |
| 1375 | { |
| 1376 | $item = $this->_escape_identifiers($item); |
| 1377 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1378 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1379 | return $item.$alias; |
| 1380 | } |
| 1381 | |
Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 1382 | // Is there a table prefix? If not, no need to insert it |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1383 | if ($this->dbprefix != '') |
| 1384 | { |
Derek Jones | 55acc8b | 2009-07-11 03:38:13 +0000 | [diff] [blame] | 1385 | // Verify table prefix and replace if necessary |
| 1386 | if ($this->swap_pre != '' && strncmp($item, $this->swap_pre, strlen($this->swap_pre)) === 0) |
| 1387 | { |
| 1388 | $item = preg_replace("/^".$this->swap_pre."(\S+?)/", $this->dbprefix."\\1", $item); |
| 1389 | } |
| 1390 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1391 | // Do we prefix an item with no segments? |
| 1392 | if ($prefix_single == TRUE AND substr($item, 0, strlen($this->dbprefix)) != $this->dbprefix) |
| 1393 | { |
| 1394 | $item = $this->dbprefix.$item; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1395 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1396 | } |
| 1397 | |
| 1398 | if ($protect_identifiers === TRUE AND ! in_array($item, $this->_reserved_identifiers)) |
| 1399 | { |
| 1400 | $item = $this->_escape_identifiers($item); |
| 1401 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 1402 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1403 | return $item.$alias; |
| 1404 | } |
Túbal Martín | 511f225 | 2011-11-24 14:43:45 +0100 | [diff] [blame] | 1405 | |
| 1406 | // -------------------------------------------------------------------- |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1407 | |
Túbal Martín | 511f225 | 2011-11-24 14:43:45 +0100 | [diff] [blame] | 1408 | /** |
| 1409 | * Dummy method that allows Active Record class to be disabled |
| 1410 | * |
| 1411 | * This function is used extensively by every db driver. |
| 1412 | * |
| 1413 | * @access private |
| 1414 | * @return void |
| 1415 | */ |
| 1416 | protected function _reset_select() |
| 1417 | { |
| 1418 | |
| 1419 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1420 | |
| 1421 | } |
| 1422 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1423 | /* End of file DB_driver.php */ |
Timothy Warren | 6f531dc | 2011-10-10 10:10:46 -0400 | [diff] [blame] | 1424 | /* Location: ./system/database/DB_driver.php */ |