blob: 9cb6645ebd825612d729e9ff2028e89d967c3ea7 [file] [log] [blame]
Derek Jones37f4b9c2011-07-01 17:56:50 -05001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Greg Aker741de1c2010-11-10 14:52:57 -06005 * An open source application development framework for PHP 5.1.6 or newer
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05007 * 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 Allard2067d1a2008-11-13 22:59:24 +000019 * @package CodeIgniter
Derek Jonesf4a4bd82011-10-20 12:18:42 -050020 * @author EllisLab Dev Team
21 * @copyright Copyright (c) 2008 - 2011, EllisLab, Inc. (http://ellislab.com/)
22 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
Derek Allard2067d1a2008-11-13 22:59:24 +000023 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
27
28// ------------------------------------------------------------------------
29
30/**
31 * MySQL Utility Class
32 *
33 * @category Database
Derek Jonesf4a4bd82011-10-20 12:18:42 -050034 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000035 * @link http://codeigniter.com/user_guide/database/
36 */
37class CI_DB_mysql_utility extends CI_DB_utility {
38
39 /**
40 * List databases
41 *
42 * @access private
43 * @return bool
44 */
45 function _list_databases()
46 {
47 return "SHOW DATABASES";
48 }
49
50 // --------------------------------------------------------------------
51
52 /**
53 * Optimize table query
54 *
55 * Generates a platform-specific query so that a table can be optimized
56 *
57 * @access private
58 * @param string the table name
59 * @return object
60 */
61 function _optimize_table($table)
62 {
63 return "OPTIMIZE TABLE ".$this->db->_escape_identifiers($table);
64 }
65
66 // --------------------------------------------------------------------
67
68 /**
69 * Repair table query
70 *
71 * Generates a platform-specific query so that a table can be repaired
72 *
73 * @access private
74 * @param string the table name
75 * @return object
76 */
77 function _repair_table($table)
78 {
79 return "REPAIR TABLE ".$this->db->_escape_identifiers($table);
80 }
81
82 // --------------------------------------------------------------------
83 /**
84 * MySQL Export
85 *
86 * @access private
87 * @param array Preferences
88 * @return mixed
89 */
90 function _backup($params = array())
91 {
92 if (count($params) == 0)
93 {
94 return FALSE;
95 }
96
97 // Extract the prefs for simplicity
98 extract($params);
Barry Mienydd671972010-10-04 16:33:58 +020099
Derek Allard2067d1a2008-11-13 22:59:24 +0000100 // Build the output
101 $output = '';
102 foreach ((array)$tables as $table)
103 {
104 // Is the table in the "ignore" list?
105 if (in_array($table, (array)$ignore, TRUE))
106 {
107 continue;
108 }
109
110 // Get the table schema
Phil Sturgeonb62cf1e2011-08-14 09:43:47 -0600111 $query = $this->db->query("SHOW CREATE TABLE `".$this->db->database.'`.`'.$table.'`');
Barry Mienydd671972010-10-04 16:33:58 +0200112
Derek Allard2067d1a2008-11-13 22:59:24 +0000113 // No result means the table name was invalid
114 if ($query === FALSE)
115 {
116 continue;
117 }
Barry Mienydd671972010-10-04 16:33:58 +0200118
Derek Allard2067d1a2008-11-13 22:59:24 +0000119 // Write out the table schema
120 $output .= '#'.$newline.'# TABLE STRUCTURE FOR: '.$table.$newline.'#'.$newline.$newline;
121
Barry Mienydd671972010-10-04 16:33:58 +0200122 if ($add_drop == TRUE)
123 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000124 $output .= 'DROP TABLE IF EXISTS '.$table.';'.$newline.$newline;
125 }
Barry Mienydd671972010-10-04 16:33:58 +0200126
Derek Allard2067d1a2008-11-13 22:59:24 +0000127 $i = 0;
128 $result = $query->result_array();
129 foreach ($result[0] as $val)
130 {
131 if ($i++ % 2)
Barry Mienydd671972010-10-04 16:33:58 +0200132 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000133 $output .= $val.';'.$newline.$newline;
134 }
135 }
Barry Mienydd671972010-10-04 16:33:58 +0200136
Derek Allard2067d1a2008-11-13 22:59:24 +0000137 // If inserts are not needed we're done...
138 if ($add_insert == FALSE)
139 {
140 continue;
141 }
142
143 // Grab all the data from the current table
144 $query = $this->db->query("SELECT * FROM $table");
Barry Mienydd671972010-10-04 16:33:58 +0200145
Derek Allard2067d1a2008-11-13 22:59:24 +0000146 if ($query->num_rows() == 0)
147 {
148 continue;
149 }
Barry Mienydd671972010-10-04 16:33:58 +0200150
Derek Allard2067d1a2008-11-13 22:59:24 +0000151 // Fetch the field names and determine if the field is an
Derek Jones37f4b9c2011-07-01 17:56:50 -0500152 // integer type. We use this info to decide whether to
Derek Allard2067d1a2008-11-13 22:59:24 +0000153 // surround the data with quotes or not
Barry Mienydd671972010-10-04 16:33:58 +0200154
Derek Allard2067d1a2008-11-13 22:59:24 +0000155 $i = 0;
156 $field_str = '';
157 $is_int = array();
158 while ($field = mysql_fetch_field($query->result_id))
159 {
160 // Most versions of MySQL store timestamp as a string
161 $is_int[$i] = (in_array(
162 strtolower(mysql_field_type($query->result_id, $i)),
Barry Mienydd671972010-10-04 16:33:58 +0200163 array('tinyint', 'smallint', 'mediumint', 'int', 'bigint'), //, 'timestamp'),
Derek Allard2067d1a2008-11-13 22:59:24 +0000164 TRUE)
165 ) ? TRUE : FALSE;
Barry Mienydd671972010-10-04 16:33:58 +0200166
Derek Allard2067d1a2008-11-13 22:59:24 +0000167 // Create a string of field names
168 $field_str .= '`'.$field->name.'`, ';
169 $i++;
170 }
Barry Mienydd671972010-10-04 16:33:58 +0200171
Derek Allard2067d1a2008-11-13 22:59:24 +0000172 // Trim off the end comma
173 $field_str = preg_replace( "/, $/" , "" , $field_str);
Barry Mienydd671972010-10-04 16:33:58 +0200174
175
Derek Allard2067d1a2008-11-13 22:59:24 +0000176 // Build the insert string
177 foreach ($query->result_array() as $row)
178 {
179 $val_str = '';
Barry Mienydd671972010-10-04 16:33:58 +0200180
Derek Allard2067d1a2008-11-13 22:59:24 +0000181 $i = 0;
182 foreach ($row as $v)
183 {
184 // Is the value NULL?
185 if ($v === NULL)
186 {
187 $val_str .= 'NULL';
188 }
189 else
190 {
191 // Escape the data if it's not an integer
192 if ($is_int[$i] == FALSE)
193 {
194 $val_str .= $this->db->escape($v);
195 }
196 else
197 {
198 $val_str .= $v;
Barry Mienydd671972010-10-04 16:33:58 +0200199 }
200 }
201
Derek Allard2067d1a2008-11-13 22:59:24 +0000202 // Append a comma
203 $val_str .= ', ';
204 $i++;
205 }
Barry Mienydd671972010-10-04 16:33:58 +0200206
Derek Allard2067d1a2008-11-13 22:59:24 +0000207 // Remove the comma at the end of the string
208 $val_str = preg_replace( "/, $/" , "" , $val_str);
Barry Mienydd671972010-10-04 16:33:58 +0200209
Derek Allard2067d1a2008-11-13 22:59:24 +0000210 // Build the INSERT string
211 $output .= 'INSERT INTO '.$table.' ('.$field_str.') VALUES ('.$val_str.');'.$newline;
212 }
Barry Mienydd671972010-10-04 16:33:58 +0200213
Derek Allard2067d1a2008-11-13 22:59:24 +0000214 $output .= $newline.$newline;
215 }
216
217 return $output;
218 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000219}
220
221/* End of file mysql_utility.php */
Derek Jonesa3ffbbb2008-05-11 18:18:29 +0000222/* Location: ./system/database/drivers/mysql/mysql_utility.php */