blob: 16b2f6f532f660d3235567c063131585ac113fce [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05007 * NOTICE OF LICENSE
Andrey Andreev2caf2892012-01-27 00:12:03 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreev2caf2892012-01-27 00:12:03 +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
Andrey Andreev80500af2013-01-01 08:16:53 +020021 * @copyright Copyright (c) 2008 - 2013, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
Derek Allard2067d1a2008-11-13 22:59:24 +000023 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020027defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000028
Derek Allard2067d1a2008-11-13 22:59:24 +000029/**
30 * MySQL Database Adapter Class
31 *
32 * Note: _DB is an extender class that the app controller
Jamie Rumbelow7efad202012-02-19 12:37:00 +000033 * creates dynamically based on whether the query builder
Derek Allard2067d1a2008-11-13 22:59:24 +000034 * class is being used or not.
35 *
36 * @package CodeIgniter
37 * @subpackage Drivers
38 * @category Database
Derek Jonesf4a4bd82011-10-20 12:18:42 -050039 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000040 * @link http://codeigniter.com/user_guide/database/
41 */
42class CI_DB_mysql_driver extends CI_DB {
43
Andrey Andreeva24e52e2012-11-02 03:54:12 +020044 /**
45 * Database driver
46 *
47 * @var string
48 */
Andrey Andreev2caf2892012-01-27 00:12:03 +020049 public $dbdriver = 'mysql';
RH Beckercfdb2322011-10-03 17:28:32 -070050
Derek Allard2067d1a2008-11-13 22:59:24 +000051 /**
Andrey Andreeva24e52e2012-11-02 03:54:12 +020052 * Compression flag
53 *
54 * @var bool
55 */
56 public $compress = FALSE;
57
58 /**
59 * DELETE hack flag
60 *
Andrey Andreev2caf2892012-01-27 00:12:03 +020061 * Whether to use the MySQL "delete hack" which allows the number
62 * of affected rows to be shown. Uses a preg_replace when enabled,
63 * adding a bit more processing to all queries.
Andrey Andreeva24e52e2012-11-02 03:54:12 +020064 *
65 * @var bool
Barry Mienydd671972010-10-04 16:33:58 +020066 */
Andrey Andreev2caf2892012-01-27 00:12:03 +020067 public $delete_hack = TRUE;
68
Andrey Andreevf8f14f32013-12-10 11:32:32 +020069 /**
70 * Strict ON flag
71 *
72 * Whether we're running in strict SQL mode.
73 *
74 * @var bool
75 */
76 public $stricton = FALSE;
77
Andrey Andreeva24e52e2012-11-02 03:54:12 +020078 // --------------------------------------------------------------------
79
Andrey Andreev473130a2012-06-24 02:51:18 +030080 /**
Andrey Andreeva24e52e2012-11-02 03:54:12 +020081 * Identifier escape character
Andrey Andreev473130a2012-06-24 02:51:18 +030082 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +020083 * @var string
84 */
85 protected $_escape_char = '`';
86
87 // --------------------------------------------------------------------
88
89 /**
90 * Class constructor
91 *
92 * @param array $params
Andrey Andreev473130a2012-06-24 02:51:18 +030093 * @return void
94 */
Andrey Andreev2caf2892012-01-27 00:12:03 +020095 public function __construct($params)
Derek Allard2067d1a2008-11-13 22:59:24 +000096 {
Andrey Andreev2caf2892012-01-27 00:12:03 +020097 parent::__construct($params);
98
Andrey Andreeve4c30192012-06-04 15:08:24 +030099 if ( ! empty($this->port))
Derek Allard2067d1a2008-11-13 22:59:24 +0000100 {
101 $this->hostname .= ':'.$this->port;
102 }
Andrey Andreev2caf2892012-01-27 00:12:03 +0200103 }
Barry Mienydd671972010-10-04 16:33:58 +0200104
Andrey Andreev473130a2012-06-24 02:51:18 +0300105 // --------------------------------------------------------------------
106
Andrey Andreev2caf2892012-01-27 00:12:03 +0200107 /**
108 * Non-persistent database connection
109 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200110 * @param bool $persistent
Andrey Andreev2caf2892012-01-27 00:12:03 +0200111 * @return resource
112 */
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300113 public function db_connect($persistent = FALSE)
Andrey Andreev2caf2892012-01-27 00:12:03 +0200114 {
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300115 $client_flags = ($this->compress === FALSE) ? 0 : MYSQL_CLIENT_COMPRESS;
116
117 if ($this->encrypt === TRUE)
Michiel Vugteveen49f7b722012-08-20 18:52:21 +0200118 {
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300119 $client_flags = $client_flags | MYSQL_CLIENT_SSL;
Michiel Vugteveen49f7b722012-08-20 18:52:21 +0200120 }
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300121
Andrey Andreev1a001492013-01-24 11:32:29 +0200122 $this->conn_id = ($persistent === TRUE)
Andrey Andreev98ebf432012-10-12 20:44:03 +0300123 ? @mysql_pconnect($this->hostname, $this->username, $this->password, $client_flags)
124 : @mysql_connect($this->hostname, $this->username, $this->password, TRUE, $client_flags);
Andrey Andreev1a001492013-01-24 11:32:29 +0200125
126 // ----------------------------------------------------------------
127
128 // Select the DB... assuming a database name is specified in the config file
129 if ($this->database !== '' && ! $this->db_select())
130 {
131 log_message('error', 'Unable to select database: '.$this->database);
132
133 return ($this->db_debug === TRUE)
134 ? $this->display_error('db_unable_to_select', $this->database)
135 : FALSE;
136 }
137
Andrey Andreevf8f14f32013-12-10 11:32:32 +0200138 if ($this->stricton && is_resource($this->conn_id))
139 {
140 $this->simple_query('SET SESSION sql_mode="STRICT_ALL_TABLES"');
141 }
142
Andrey Andreev1a001492013-01-24 11:32:29 +0200143 return $this->conn_id;
Derek Allard2067d1a2008-11-13 22:59:24 +0000144 }
Barry Mienydd671972010-10-04 16:33:58 +0200145
Derek Allard2067d1a2008-11-13 22:59:24 +0000146 // --------------------------------------------------------------------
147
148 /**
149 * Persistent database connection
150 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000151 * @return resource
Barry Mienydd671972010-10-04 16:33:58 +0200152 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200153 public function db_pconnect()
Derek Allard2067d1a2008-11-13 22:59:24 +0000154 {
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300155 return $this->db_connect(TRUE);
Derek Allard2067d1a2008-11-13 22:59:24 +0000156 }
Barry Mienydd671972010-10-04 16:33:58 +0200157
Derek Allard2067d1a2008-11-13 22:59:24 +0000158 // --------------------------------------------------------------------
159
160 /**
Derek Jones87cbafc2009-02-27 16:29:59 +0000161 * Reconnect
162 *
163 * Keep / reestablish the db connection if no queries have been
164 * sent for a length of time exceeding the server's idle timeout
165 *
Derek Jones87cbafc2009-02-27 16:29:59 +0000166 * @return void
167 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200168 public function reconnect()
Derek Jones87cbafc2009-02-27 16:29:59 +0000169 {
170 if (mysql_ping($this->conn_id) === FALSE)
171 {
172 $this->conn_id = FALSE;
173 }
174 }
175
176 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200177
Derek Jones87cbafc2009-02-27 16:29:59 +0000178 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000179 * Select the database
180 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200181 * @param string $database
Andrey Andreev2caf2892012-01-27 00:12:03 +0200182 * @return bool
Barry Mienydd671972010-10-04 16:33:58 +0200183 */
Andrey Andreev11454e02012-02-22 16:05:47 +0200184 public function db_select($database = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000185 {
Andrey Andreev024ba2d2012-02-24 11:40:36 +0200186 if ($database === '')
187 {
188 $database = $this->database;
189 }
190
191 if (@mysql_select_db($database, $this->conn_id))
192 {
193 $this->database = $database;
194 return TRUE;
195 }
196
197 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000198 }
199
200 // --------------------------------------------------------------------
201
202 /**
203 * Set client character set
204 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200205 * @param string $charset
Andrey Andreev2caf2892012-01-27 00:12:03 +0200206 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +0000207 */
Andrey Andreev95bd1d12012-03-12 16:22:28 +0200208 protected function _db_set_charset($charset)
Derek Allard2067d1a2008-11-13 22:59:24 +0000209 {
Andrey Andreevb3442a12012-03-12 15:35:40 +0200210 return @mysql_set_charset($charset, $this->conn_id);
Derek Allard2067d1a2008-11-13 22:59:24 +0000211 }
212
213 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200214
Derek Allard2067d1a2008-11-13 22:59:24 +0000215 /**
Andrey Andreev08856b82012-03-03 03:19:28 +0200216 * Database version number
Derek Allard2067d1a2008-11-13 22:59:24 +0000217 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000218 * @return string
219 */
Andrey Andreev08856b82012-03-03 03:19:28 +0200220 public function version()
Derek Allard2067d1a2008-11-13 22:59:24 +0000221 {
Andrey Andreev2b730372012-11-05 17:01:11 +0200222 if (isset($this->data_cache['version']))
223 {
224 return $this->data_cache['version'];
225 }
226 elseif ( ! $this->conn_id)
227 {
228 $this->initialize();
229 }
230
231 if ( ! $this->conn_id OR ($version = @mysql_get_server_info($this->conn_id)) === FALSE)
232 {
233 return FALSE;
234 }
235
236 return $this->data_cache['version'] = $version;
Derek Allard2067d1a2008-11-13 22:59:24 +0000237 }
238
239 // --------------------------------------------------------------------
240
241 /**
242 * Execute the query
243 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200244 * @param string $sql an SQL query
Andrey Andreev2caf2892012-01-27 00:12:03 +0200245 * @return mixed
Barry Mienydd671972010-10-04 16:33:58 +0200246 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200247 protected function _execute($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000248 {
Andrey Andreev2caf2892012-01-27 00:12:03 +0200249 return @mysql_query($this->_prep_query($sql), $this->conn_id);
Derek Allard2067d1a2008-11-13 22:59:24 +0000250 }
Barry Mienydd671972010-10-04 16:33:58 +0200251
Derek Allard2067d1a2008-11-13 22:59:24 +0000252 // --------------------------------------------------------------------
253
254 /**
255 * Prep the query
256 *
257 * If needed, each database adapter can prep the query string
258 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200259 * @param string $sql an SQL query
Derek Allard2067d1a2008-11-13 22:59:24 +0000260 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200261 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200262 protected function _prep_query($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000263 {
Andrey Andreev2caf2892012-01-27 00:12:03 +0200264 // mysql_affected_rows() returns 0 for "DELETE FROM TABLE" queries. This hack
265 // modifies the query so that it a proper number of affected rows is returned.
266 if ($this->delete_hack === TRUE && preg_match('/^\s*DELETE\s+FROM\s+(\S+)\s*$/i', $sql))
Derek Allard2067d1a2008-11-13 22:59:24 +0000267 {
Andrey Andreevbe999662013-01-10 11:40:09 +0200268 return trim($sql).' WHERE 1=1';
Derek Allard2067d1a2008-11-13 22:59:24 +0000269 }
Barry Mienydd671972010-10-04 16:33:58 +0200270
Derek Allard2067d1a2008-11-13 22:59:24 +0000271 return $sql;
272 }
273
274 // --------------------------------------------------------------------
275
276 /**
277 * Begin Transaction
278 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200279 * @param bool $test_mode
Barry Mienydd671972010-10-04 16:33:58 +0200280 * @return bool
281 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200282 public function trans_begin($test_mode = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000283 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000284 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev2caf2892012-01-27 00:12:03 +0200285 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000286 {
287 return TRUE;
288 }
289
290 // Reset the transaction failure flag.
291 // If the $test_mode flag is set to TRUE transactions will be rolled back
292 // even if the queries produce a successful result.
Andrey Andreev2caf2892012-01-27 00:12:03 +0200293 $this->_trans_failure = ($test_mode === TRUE);
Barry Mienydd671972010-10-04 16:33:58 +0200294
Derek Allard2067d1a2008-11-13 22:59:24 +0000295 $this->simple_query('SET AUTOCOMMIT=0');
296 $this->simple_query('START TRANSACTION'); // can also be BEGIN or BEGIN WORK
297 return TRUE;
298 }
299
300 // --------------------------------------------------------------------
301
302 /**
303 * Commit Transaction
304 *
Barry Mienydd671972010-10-04 16:33:58 +0200305 * @return bool
306 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200307 public function trans_commit()
Derek Allard2067d1a2008-11-13 22:59:24 +0000308 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000309 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev2caf2892012-01-27 00:12:03 +0200310 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000311 {
312 return TRUE;
313 }
314
315 $this->simple_query('COMMIT');
316 $this->simple_query('SET AUTOCOMMIT=1');
317 return TRUE;
318 }
319
320 // --------------------------------------------------------------------
321
322 /**
323 * Rollback Transaction
324 *
Barry Mienydd671972010-10-04 16:33:58 +0200325 * @return bool
326 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200327 public function trans_rollback()
Derek Allard2067d1a2008-11-13 22:59:24 +0000328 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000329 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev2caf2892012-01-27 00:12:03 +0200330 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000331 {
332 return TRUE;
333 }
334
335 $this->simple_query('ROLLBACK');
336 $this->simple_query('SET AUTOCOMMIT=1');
337 return TRUE;
338 }
Barry Mienydd671972010-10-04 16:33:58 +0200339
Derek Allard2067d1a2008-11-13 22:59:24 +0000340 // --------------------------------------------------------------------
341
342 /**
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200343 * Platform-dependant string escape
Derek Allard2067d1a2008-11-13 22:59:24 +0000344 *
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200345 * @param string
Derek Allard2067d1a2008-11-13 22:59:24 +0000346 * @return string
347 */
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200348 protected function _escape_str($str)
Barry Mienydd671972010-10-04 16:33:58 +0200349 {
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200350 return is_resource($this->conn_id)
351 ? mysql_real_escape_string($str, $this->conn_id)
352 : addslashes($str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000353 }
Barry Mienydd671972010-10-04 16:33:58 +0200354
Derek Allard2067d1a2008-11-13 22:59:24 +0000355 // --------------------------------------------------------------------
356
357 /**
358 * Affected Rows
359 *
Andrey Andreev2caf2892012-01-27 00:12:03 +0200360 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000361 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200362 public function affected_rows()
Derek Allard2067d1a2008-11-13 22:59:24 +0000363 {
364 return @mysql_affected_rows($this->conn_id);
365 }
Barry Mienydd671972010-10-04 16:33:58 +0200366
Derek Allard2067d1a2008-11-13 22:59:24 +0000367 // --------------------------------------------------------------------
368
369 /**
370 * Insert ID
371 *
Andrey Andreev2caf2892012-01-27 00:12:03 +0200372 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000373 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200374 public function insert_id()
Derek Allard2067d1a2008-11-13 22:59:24 +0000375 {
376 return @mysql_insert_id($this->conn_id);
377 }
378
379 // --------------------------------------------------------------------
380
381 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000382 * List table query
383 *
384 * Generates a platform-specific query string so that the table names can be fetched
385 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200386 * @param bool $prefix_limit
Derek Allard2067d1a2008-11-13 22:59:24 +0000387 * @return string
388 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200389 protected function _list_tables($prefix_limit = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000390 {
Andrey Andreev473130a2012-06-24 02:51:18 +0300391 $sql = 'SHOW TABLES FROM '.$this->escape_identifiers($this->database);
Derek Allard2067d1a2008-11-13 22:59:24 +0000392
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100393 if ($prefix_limit !== FALSE && $this->dbprefix !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000394 {
Andrey Andreev2caf2892012-01-27 00:12:03 +0200395 return $sql." LIKE '".$this->escape_like_str($this->dbprefix)."%'";
Derek Allard2067d1a2008-11-13 22:59:24 +0000396 }
397
398 return $sql;
399 }
Barry Mienydd671972010-10-04 16:33:58 +0200400
Derek Allard2067d1a2008-11-13 22:59:24 +0000401 // --------------------------------------------------------------------
402
403 /**
404 * Show column query
405 *
406 * Generates a platform-specific query string so that the column names can be fetched
407 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200408 * @param string $table
Derek Allard2067d1a2008-11-13 22:59:24 +0000409 * @return string
410 */
Andrey Andreev473130a2012-06-24 02:51:18 +0300411 protected function _list_columns($table = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000412 {
Andrey Andreev2caf2892012-01-27 00:12:03 +0200413 return 'SHOW COLUMNS FROM '.$this->protect_identifiers($table, TRUE, NULL, FALSE);
Derek Allard2067d1a2008-11-13 22:59:24 +0000414 }
415
416 // --------------------------------------------------------------------
417
418 /**
Andrey Andreev3722e502012-03-03 15:04:38 +0200419 * Returns an object with field data
Derek Allard2067d1a2008-11-13 22:59:24 +0000420 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200421 * @param string $table
Andrey Andreev10ecc842012-11-16 01:06:20 +0200422 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000423 */
Andrey Andreev3722e502012-03-03 15:04:38 +0200424 public function field_data($table = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000425 {
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100426 if ($table === '')
Andrey Andreev3722e502012-03-03 15:04:38 +0200427 {
428 return ($this->db_debug) ? $this->display_error('db_field_param_missing') : FALSE;
429 }
430
Andrey Andreev10ecc842012-11-16 01:06:20 +0200431 if (($query = $this->query('SHOW COLUMNS FROM '.$this->protect_identifiers($table, TRUE, NULL, FALSE))) === FALSE)
432 {
433 return FALSE;
434 }
Andrey Andreev3722e502012-03-03 15:04:38 +0200435 $query = $query->result_object();
436
437 $retval = array();
438 for ($i = 0, $c = count($query); $i < $c; $i++)
439 {
Andrey Andreev3722e502012-03-03 15:04:38 +0200440 $retval[$i] = new stdClass();
441 $retval[$i]->name = $query[$i]->Field;
Andrey Andreev10ecc842012-11-16 01:06:20 +0200442
443 sscanf($query[$i]->Type, '%[a-z](%d)',
444 $retval[$i]->type,
445 $retval[$i]->max_length
446 );
447
Andrey Andreev3722e502012-03-03 15:04:38 +0200448 $retval[$i]->default = $query[$i]->Default;
Andrey Andreev3722e502012-03-03 15:04:38 +0200449 $retval[$i]->primary_key = (int) ($query[$i]->Key === 'PRI');
450 }
451
452 return $retval;
Derek Allard2067d1a2008-11-13 22:59:24 +0000453 }
454
455 // --------------------------------------------------------------------
456
457 /**
Andrey Andreev4be5de12012-03-02 15:45:41 +0200458 * Error
Derek Allard2067d1a2008-11-13 22:59:24 +0000459 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200460 * Returns an array containing code and message of the last
461 * database error that has occured.
Derek Allard2067d1a2008-11-13 22:59:24 +0000462 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200463 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000464 */
Andrey Andreev4be5de12012-03-02 15:45:41 +0200465 public function error()
Derek Allard2067d1a2008-11-13 22:59:24 +0000466 {
Andrey Andreev4be5de12012-03-02 15:45:41 +0200467 return array('code' => mysql_errno($this->conn_id), 'message' => mysql_error($this->conn_id));
Derek Allard2067d1a2008-11-13 22:59:24 +0000468 }
469
470 // --------------------------------------------------------------------
471
472 /**
Andrey Andreev7eaa14f2012-10-09 11:34:01 +0300473 * FROM tables
474 *
475 * Groups tables in FROM clauses if needed, so there is no confusion
476 * about operator precedence.
477 *
478 * @return string
479 */
480 protected function _from_tables()
481 {
Andrey Andreevfce9abe2012-10-09 11:37:00 +0300482 if ( ! empty($this->qb_join) && count($this->qb_from) > 1)
Andrey Andreev7eaa14f2012-10-09 11:34:01 +0300483 {
484 return '('.implode(', ', $this->qb_from).')';
485 }
486
487 return implode(', ', $this->qb_from);
488 }
489
490 // --------------------------------------------------------------------
491
492 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000493 * Close DB Connection
494 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000495 * @return void
496 */
Andrey Andreev79922c02012-05-23 12:27:17 +0300497 protected function _close()
Derek Allard2067d1a2008-11-13 22:59:24 +0000498 {
Andrey Andreev79922c02012-05-23 12:27:17 +0300499 @mysql_close($this->conn_id);
Derek Allard2067d1a2008-11-13 22:59:24 +0000500 }
Barry Mienydd671972010-10-04 16:33:58 +0200501
Derek Allard2067d1a2008-11-13 22:59:24 +0000502}
503
Derek Allard2067d1a2008-11-13 22:59:24 +0000504/* End of file mysql_driver.php */
Andrey Andreev79922c02012-05-23 12:27:17 +0300505/* Location: ./system/database/drivers/mysql/mysql_driver.php */