blob: df0f24920d7ca7491e2e16fc6caf3e85dd899084 [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Andrey Andreevfe9309d2015-01-09 17:48:58 +02005 * An open source application development framework for PHP
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +02007 * This content is released under the MIT License (MIT)
Andrey Andreev2caf2892012-01-27 00:12:03 +02008 *
Andrey Andreevfe9309d2015-01-09 17:48:58 +02009 * Copyright (c) 2014 - 2015, British Columbia Institute of Technology
Andrey Andreev2caf2892012-01-27 00:12:03 +020010 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020011 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
Derek Jonesf4a4bd82011-10-20 12:18:42 -050017 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020018 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 * THE SOFTWARE.
28 *
29 * @package CodeIgniter
30 * @author EllisLab Dev Team
darwinel871754a2014-02-11 17:34:57 +010031 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
Andrey Andreevfe9309d2015-01-09 17:48:58 +020032 * @copyright Copyright (c) 2014 - 2015, British Columbia Institute of Technology (http://bcit.ca/)
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020033 * @license http://opensource.org/licenses/MIT MIT License
34 * @link http://codeigniter.com
35 * @since Version 1.0.0
Derek Allard2067d1a2008-11-13 22:59:24 +000036 * @filesource
37 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020038defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000039
Derek Allard2067d1a2008-11-13 22:59:24 +000040/**
41 * MySQL Database Adapter Class
42 *
43 * Note: _DB is an extender class that the app controller
Jamie Rumbelow7efad202012-02-19 12:37:00 +000044 * creates dynamically based on whether the query builder
Derek Allard2067d1a2008-11-13 22:59:24 +000045 * class is being used or not.
46 *
47 * @package CodeIgniter
48 * @subpackage Drivers
49 * @category Database
Derek Jonesf4a4bd82011-10-20 12:18:42 -050050 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000051 * @link http://codeigniter.com/user_guide/database/
52 */
53class CI_DB_mysql_driver extends CI_DB {
54
Andrey Andreeva24e52e2012-11-02 03:54:12 +020055 /**
56 * Database driver
57 *
58 * @var string
59 */
Andrey Andreev2caf2892012-01-27 00:12:03 +020060 public $dbdriver = 'mysql';
RH Beckercfdb2322011-10-03 17:28:32 -070061
Derek Allard2067d1a2008-11-13 22:59:24 +000062 /**
Andrey Andreeva24e52e2012-11-02 03:54:12 +020063 * Compression flag
64 *
65 * @var bool
66 */
67 public $compress = FALSE;
68
69 /**
70 * DELETE hack flag
71 *
Andrey Andreev2caf2892012-01-27 00:12:03 +020072 * Whether to use the MySQL "delete hack" which allows the number
73 * of affected rows to be shown. Uses a preg_replace when enabled,
74 * adding a bit more processing to all queries.
Andrey Andreeva24e52e2012-11-02 03:54:12 +020075 *
76 * @var bool
Barry Mienydd671972010-10-04 16:33:58 +020077 */
Andrey Andreev2caf2892012-01-27 00:12:03 +020078 public $delete_hack = TRUE;
79
Andrey Andreevf8f14f32013-12-10 11:32:32 +020080 /**
81 * Strict ON flag
82 *
83 * Whether we're running in strict SQL mode.
84 *
85 * @var bool
86 */
87 public $stricton = FALSE;
88
Andrey Andreeva24e52e2012-11-02 03:54:12 +020089 // --------------------------------------------------------------------
90
Andrey Andreev473130a2012-06-24 02:51:18 +030091 /**
Andrey Andreeva24e52e2012-11-02 03:54:12 +020092 * Identifier escape character
Andrey Andreev473130a2012-06-24 02:51:18 +030093 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +020094 * @var string
95 */
96 protected $_escape_char = '`';
97
98 // --------------------------------------------------------------------
99
100 /**
101 * Class constructor
102 *
103 * @param array $params
Andrey Andreev473130a2012-06-24 02:51:18 +0300104 * @return void
105 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200106 public function __construct($params)
Derek Allard2067d1a2008-11-13 22:59:24 +0000107 {
Andrey Andreev2caf2892012-01-27 00:12:03 +0200108 parent::__construct($params);
109
Andrey Andreeve4c30192012-06-04 15:08:24 +0300110 if ( ! empty($this->port))
Derek Allard2067d1a2008-11-13 22:59:24 +0000111 {
112 $this->hostname .= ':'.$this->port;
113 }
Andrey Andreev2caf2892012-01-27 00:12:03 +0200114 }
Barry Mienydd671972010-10-04 16:33:58 +0200115
Andrey Andreev473130a2012-06-24 02:51:18 +0300116 // --------------------------------------------------------------------
117
Andrey Andreev2caf2892012-01-27 00:12:03 +0200118 /**
119 * Non-persistent database connection
120 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200121 * @param bool $persistent
Andrey Andreev2caf2892012-01-27 00:12:03 +0200122 * @return resource
123 */
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300124 public function db_connect($persistent = FALSE)
Andrey Andreev2caf2892012-01-27 00:12:03 +0200125 {
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300126 $client_flags = ($this->compress === FALSE) ? 0 : MYSQL_CLIENT_COMPRESS;
127
128 if ($this->encrypt === TRUE)
Michiel Vugteveen49f7b722012-08-20 18:52:21 +0200129 {
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300130 $client_flags = $client_flags | MYSQL_CLIENT_SSL;
Michiel Vugteveen49f7b722012-08-20 18:52:21 +0200131 }
Andrey Andreev2f8bf9b2012-10-12 20:37:52 +0300132
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300133 // Error suppression is necessary mostly due to PHP 5.5+ issuing E_DEPRECATED messages
Andrey Andreev1a001492013-01-24 11:32:29 +0200134 $this->conn_id = ($persistent === TRUE)
Andrey Andreev1dc43aa2015-01-20 11:09:17 +0200135 ? mysql_pconnect($this->hostname, $this->username, $this->password, $client_flags)
136 : mysql_connect($this->hostname, $this->username, $this->password, TRUE, $client_flags);
Andrey Andreev1a001492013-01-24 11:32:29 +0200137
138 // ----------------------------------------------------------------
139
140 // Select the DB... assuming a database name is specified in the config file
141 if ($this->database !== '' && ! $this->db_select())
142 {
143 log_message('error', 'Unable to select database: '.$this->database);
144
145 return ($this->db_debug === TRUE)
146 ? $this->display_error('db_unable_to_select', $this->database)
147 : FALSE;
148 }
149
Andrey Andreevf8f14f32013-12-10 11:32:32 +0200150 if ($this->stricton && is_resource($this->conn_id))
151 {
152 $this->simple_query('SET SESSION sql_mode="STRICT_ALL_TABLES"');
153 }
154
Andrey Andreev1a001492013-01-24 11:32:29 +0200155 return $this->conn_id;
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
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300191 if (mysql_select_db($database, $this->conn_id))
Andrey Andreev024ba2d2012-02-24 11:40:36 +0200192 {
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 Andreev2bbbd1a2014-05-09 10:24:14 +0300210 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 }
Andrey Andreev2b730372012-11-05 17:01:11 +0200226
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300227 if ( ! $this->conn_id OR ($version = mysql_get_server_info($this->conn_id)) === FALSE)
Andrey Andreev2b730372012-11-05 17:01:11 +0200228 {
229 return FALSE;
230 }
231
232 return $this->data_cache['version'] = $version;
Derek Allard2067d1a2008-11-13 22:59:24 +0000233 }
234
235 // --------------------------------------------------------------------
236
237 /**
238 * Execute the query
239 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200240 * @param string $sql an SQL query
Andrey Andreev2caf2892012-01-27 00:12:03 +0200241 * @return mixed
Barry Mienydd671972010-10-04 16:33:58 +0200242 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200243 protected function _execute($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000244 {
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300245 return mysql_query($this->_prep_query($sql), $this->conn_id);
Derek Allard2067d1a2008-11-13 22:59:24 +0000246 }
Barry Mienydd671972010-10-04 16:33:58 +0200247
Derek Allard2067d1a2008-11-13 22:59:24 +0000248 // --------------------------------------------------------------------
249
250 /**
251 * Prep the query
252 *
253 * If needed, each database adapter can prep the query string
254 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200255 * @param string $sql an SQL query
Derek Allard2067d1a2008-11-13 22:59:24 +0000256 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200257 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200258 protected function _prep_query($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000259 {
Andrey Andreev2caf2892012-01-27 00:12:03 +0200260 // mysql_affected_rows() returns 0 for "DELETE FROM TABLE" queries. This hack
261 // modifies the query so that it a proper number of affected rows is returned.
262 if ($this->delete_hack === TRUE && preg_match('/^\s*DELETE\s+FROM\s+(\S+)\s*$/i', $sql))
Derek Allard2067d1a2008-11-13 22:59:24 +0000263 {
Andrey Andreevbe999662013-01-10 11:40:09 +0200264 return trim($sql).' WHERE 1=1';
Derek Allard2067d1a2008-11-13 22:59:24 +0000265 }
Barry Mienydd671972010-10-04 16:33:58 +0200266
Derek Allard2067d1a2008-11-13 22:59:24 +0000267 return $sql;
268 }
269
270 // --------------------------------------------------------------------
271
272 /**
273 * Begin Transaction
274 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200275 * @param bool $test_mode
Barry Mienydd671972010-10-04 16:33:58 +0200276 * @return bool
277 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200278 public function trans_begin($test_mode = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000279 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000280 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev2caf2892012-01-27 00:12:03 +0200281 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000282 {
283 return TRUE;
284 }
285
286 // Reset the transaction failure flag.
287 // If the $test_mode flag is set to TRUE transactions will be rolled back
288 // even if the queries produce a successful result.
Andrey Andreev2caf2892012-01-27 00:12:03 +0200289 $this->_trans_failure = ($test_mode === TRUE);
Barry Mienydd671972010-10-04 16:33:58 +0200290
Derek Allard2067d1a2008-11-13 22:59:24 +0000291 $this->simple_query('SET AUTOCOMMIT=0');
292 $this->simple_query('START TRANSACTION'); // can also be BEGIN or BEGIN WORK
293 return TRUE;
294 }
295
296 // --------------------------------------------------------------------
297
298 /**
299 * Commit Transaction
300 *
Barry Mienydd671972010-10-04 16:33:58 +0200301 * @return bool
302 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200303 public function trans_commit()
Derek Allard2067d1a2008-11-13 22:59:24 +0000304 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000305 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev2caf2892012-01-27 00:12:03 +0200306 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000307 {
308 return TRUE;
309 }
310
311 $this->simple_query('COMMIT');
312 $this->simple_query('SET AUTOCOMMIT=1');
313 return TRUE;
314 }
315
316 // --------------------------------------------------------------------
317
318 /**
319 * Rollback Transaction
320 *
Barry Mienydd671972010-10-04 16:33:58 +0200321 * @return bool
322 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200323 public function trans_rollback()
Derek Allard2067d1a2008-11-13 22:59:24 +0000324 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000325 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev2caf2892012-01-27 00:12:03 +0200326 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000327 {
328 return TRUE;
329 }
330
331 $this->simple_query('ROLLBACK');
332 $this->simple_query('SET AUTOCOMMIT=1');
333 return TRUE;
334 }
Barry Mienydd671972010-10-04 16:33:58 +0200335
Derek Allard2067d1a2008-11-13 22:59:24 +0000336 // --------------------------------------------------------------------
337
338 /**
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200339 * Platform-dependant string escape
Derek Allard2067d1a2008-11-13 22:59:24 +0000340 *
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200341 * @param string
Derek Allard2067d1a2008-11-13 22:59:24 +0000342 * @return string
343 */
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200344 protected function _escape_str($str)
Barry Mienydd671972010-10-04 16:33:58 +0200345 {
Andrey Andreev62fad282014-06-19 15:25:40 +0300346 return mysql_real_escape_string($str, $this->conn_id);
Derek Allard2067d1a2008-11-13 22:59:24 +0000347 }
Barry Mienydd671972010-10-04 16:33:58 +0200348
Derek Allard2067d1a2008-11-13 22:59:24 +0000349 // --------------------------------------------------------------------
350
351 /**
352 * Affected Rows
353 *
Andrey Andreev2caf2892012-01-27 00:12:03 +0200354 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000355 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200356 public function affected_rows()
Derek Allard2067d1a2008-11-13 22:59:24 +0000357 {
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300358 return mysql_affected_rows($this->conn_id);
Derek Allard2067d1a2008-11-13 22:59:24 +0000359 }
Barry Mienydd671972010-10-04 16:33:58 +0200360
Derek Allard2067d1a2008-11-13 22:59:24 +0000361 // --------------------------------------------------------------------
362
363 /**
364 * Insert ID
365 *
Andrey Andreev2caf2892012-01-27 00:12:03 +0200366 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000367 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200368 public function insert_id()
Derek Allard2067d1a2008-11-13 22:59:24 +0000369 {
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300370 return mysql_insert_id($this->conn_id);
Derek Allard2067d1a2008-11-13 22:59:24 +0000371 }
372
373 // --------------------------------------------------------------------
374
375 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000376 * List table query
377 *
378 * Generates a platform-specific query string so that the table names can be fetched
379 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200380 * @param bool $prefix_limit
Derek Allard2067d1a2008-11-13 22:59:24 +0000381 * @return string
382 */
Andrey Andreev2caf2892012-01-27 00:12:03 +0200383 protected function _list_tables($prefix_limit = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000384 {
Andrey Andreev473130a2012-06-24 02:51:18 +0300385 $sql = 'SHOW TABLES FROM '.$this->escape_identifiers($this->database);
Derek Allard2067d1a2008-11-13 22:59:24 +0000386
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100387 if ($prefix_limit !== FALSE && $this->dbprefix !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000388 {
Andrey Andreev2caf2892012-01-27 00:12:03 +0200389 return $sql." LIKE '".$this->escape_like_str($this->dbprefix)."%'";
Derek Allard2067d1a2008-11-13 22:59:24 +0000390 }
391
392 return $sql;
393 }
Barry Mienydd671972010-10-04 16:33:58 +0200394
Derek Allard2067d1a2008-11-13 22:59:24 +0000395 // --------------------------------------------------------------------
396
397 /**
398 * Show column query
399 *
400 * Generates a platform-specific query string so that the column names can be fetched
401 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200402 * @param string $table
Derek Allard2067d1a2008-11-13 22:59:24 +0000403 * @return string
404 */
Andrey Andreev473130a2012-06-24 02:51:18 +0300405 protected function _list_columns($table = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000406 {
Andrey Andreev2caf2892012-01-27 00:12:03 +0200407 return 'SHOW COLUMNS FROM '.$this->protect_identifiers($table, TRUE, NULL, FALSE);
Derek Allard2067d1a2008-11-13 22:59:24 +0000408 }
409
410 // --------------------------------------------------------------------
411
412 /**
Andrey Andreev3722e502012-03-03 15:04:38 +0200413 * Returns an object with field data
Derek Allard2067d1a2008-11-13 22:59:24 +0000414 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200415 * @param string $table
Andrey Andreev10ecc842012-11-16 01:06:20 +0200416 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000417 */
Andrey Andreev5350f052015-01-12 12:33:37 +0200418 public function field_data($table)
Derek Allard2067d1a2008-11-13 22:59:24 +0000419 {
Andrey Andreev10ecc842012-11-16 01:06:20 +0200420 if (($query = $this->query('SHOW COLUMNS FROM '.$this->protect_identifiers($table, TRUE, NULL, FALSE))) === FALSE)
421 {
422 return FALSE;
423 }
Andrey Andreev3722e502012-03-03 15:04:38 +0200424 $query = $query->result_object();
425
426 $retval = array();
427 for ($i = 0, $c = count($query); $i < $c; $i++)
428 {
Andrey Andreev3722e502012-03-03 15:04:38 +0200429 $retval[$i] = new stdClass();
430 $retval[$i]->name = $query[$i]->Field;
Andrey Andreev10ecc842012-11-16 01:06:20 +0200431
432 sscanf($query[$i]->Type, '%[a-z](%d)',
433 $retval[$i]->type,
434 $retval[$i]->max_length
435 );
436
Andrey Andreev3722e502012-03-03 15:04:38 +0200437 $retval[$i]->default = $query[$i]->Default;
Andrey Andreev3722e502012-03-03 15:04:38 +0200438 $retval[$i]->primary_key = (int) ($query[$i]->Key === 'PRI');
439 }
440
441 return $retval;
Derek Allard2067d1a2008-11-13 22:59:24 +0000442 }
443
444 // --------------------------------------------------------------------
445
446 /**
Andrey Andreev4be5de12012-03-02 15:45:41 +0200447 * Error
Derek Allard2067d1a2008-11-13 22:59:24 +0000448 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200449 * Returns an array containing code and message of the last
450 * database error that has occured.
Derek Allard2067d1a2008-11-13 22:59:24 +0000451 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200452 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000453 */
Andrey Andreev4be5de12012-03-02 15:45:41 +0200454 public function error()
Derek Allard2067d1a2008-11-13 22:59:24 +0000455 {
Andrey Andreev4be5de12012-03-02 15:45:41 +0200456 return array('code' => mysql_errno($this->conn_id), 'message' => mysql_error($this->conn_id));
Derek Allard2067d1a2008-11-13 22:59:24 +0000457 }
458
459 // --------------------------------------------------------------------
460
461 /**
Andrey Andreev7eaa14f2012-10-09 11:34:01 +0300462 * FROM tables
463 *
464 * Groups tables in FROM clauses if needed, so there is no confusion
465 * about operator precedence.
466 *
467 * @return string
468 */
469 protected function _from_tables()
470 {
Andrey Andreevfce9abe2012-10-09 11:37:00 +0300471 if ( ! empty($this->qb_join) && count($this->qb_from) > 1)
Andrey Andreev7eaa14f2012-10-09 11:34:01 +0300472 {
473 return '('.implode(', ', $this->qb_from).')';
474 }
475
476 return implode(', ', $this->qb_from);
477 }
478
479 // --------------------------------------------------------------------
480
481 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000482 * Close DB Connection
483 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000484 * @return void
485 */
Andrey Andreev79922c02012-05-23 12:27:17 +0300486 protected function _close()
Derek Allard2067d1a2008-11-13 22:59:24 +0000487 {
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300488 // Error suppression to avoid annoying E_WARNINGs in cases
489 // where the connection has already been closed for some reason.
Andrey Andreev79922c02012-05-23 12:27:17 +0300490 @mysql_close($this->conn_id);
Derek Allard2067d1a2008-11-13 22:59:24 +0000491 }
Barry Mienydd671972010-10-04 16:33:58 +0200492
Derek Allard2067d1a2008-11-13 22:59:24 +0000493}