blob: 41a9186ce7d7a472781093244dabe643f2b87172 [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 Andreev1ff49e02012-01-27 11:30:41 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreev1ff49e02012-01-27 11:30:41 +020010 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -050011 * This source file is subject to the Open Software License (OSL 3.0) that is
12 * bundled with this package in the files license.txt / license.rst. It is
13 * also available through the world wide web at this URL:
14 * http://opensource.org/licenses/OSL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
Derek Allard2067d1a2008-11-13 22:59:24 +000019 * @package CodeIgniter
Derek Jonesf4a4bd82011-10-20 12:18:42 -050020 * @author EllisLab Dev Team
Greg Aker0defe5d2012-01-01 18:46:41 -060021 * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
Derek Allard2067d1a2008-11-13 22:59:24 +000023 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
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 * MySQLi Utility Class
31 *
32 * @category Database
Derek Jonesf4a4bd82011-10-20 12:18:42 -050033 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000034 * @link http://codeigniter.com/user_guide/database/
35 */
36class CI_DB_mysqli_utility extends CI_DB_utility {
Barry Mienydd671972010-10-04 16:33:58 +020037
Andrey Andreevb457a402012-04-09 16:11:56 +030038 protected $_list_databases = 'SHOW DATABASES';
39 protected $_optimize_table = 'OPTIMIZE TABLE %s';
40 protected $_repair_table = 'REPAIR TABLE %s';
Derek Allard2067d1a2008-11-13 22:59:24 +000041
42 /**
43 * MySQLi Export
44 *
Derek Allard2067d1a2008-11-13 22:59:24 +000045 * @param array Preferences
46 * @return mixed
47 */
Andrey Andreevb457a402012-04-09 16:11:56 +030048 protected function _backup($params = array())
Derek Allard2067d1a2008-11-13 22:59:24 +000049 {
Andrey Andreev782de112012-06-12 03:04:50 +030050 if (count($params) === 0)
51 {
52 return FALSE;
53 }
54
55 // Extract the prefs for simplicity
56 extract($params);
57
58 // Build the output
59 $output = '';
60 foreach ( (array) $tables as $table)
61 {
62 // Is the table in the "ignore" list?
63 if (in_array($table, (array) $ignore, TRUE))
64 {
65 continue;
66 }
67
68 // Get the table schema
69 $query = $this->db->query('SHOW CREATE TABLE '.$this->db->escape_identifiers($this->db->database.'.'.$table));
70
71 // No result means the table name was invalid
72 if ($query === FALSE)
73 {
74 continue;
75 }
76
77 // Write out the table schema
78 $output .= '#'.$newline.'# TABLE STRUCTURE FOR: '.$table.$newline.'#'.$newline.$newline;
79
80 if ($add_drop === TRUE)
81 {
82 $output .= 'DROP TABLE IF EXISTS '.$this->db->protect_identifiers($table).';'.$newline.$newline;
83 }
84
85 $i = 0;
86 $result = $query->result_array();
87 foreach ($result[0] as $val)
88 {
89 if ($i++ % 2)
90 {
91 $output .= $val.';'.$newline.$newline;
92 }
93 }
94
95 // If inserts are not needed we're done...
96 if ($add_insert === FALSE)
97 {
98 continue;
99 }
100
101 // Grab all the data from the current table
102 $query = $this->db->query('SELECT * FROM '.$this->db->protect_identifiers($table));
103
104 if ($query->num_rows() === 0)
105 {
106 continue;
107 }
108
109 // Fetch the field names and determine if the field is an
110 // integer type. We use this info to decide whether to
111 // surround the data with quotes or not
112
113 $i = 0;
114 $field_str = '';
115 $is_int = array();
116 while ($field = $query->result_id->fetch_field())
117 {
118 // Most versions of MySQL store timestamp as a string
119 $is_int[$i] = in_array(strtolower($field->type),
120 array('tinyint', 'smallint', 'mediumint', 'int', 'bigint'), //, 'timestamp'),
121 TRUE);
122
123 // Create a string of field names
124 $field_str .= $this->db->escape_identifiers($field->name).', ';
125 $i++;
126 }
127
128 // Trim off the end comma
129 $field_str = preg_replace('/, $/' , '', $field_str);
130
131 // Build the insert string
132 foreach ($query->result_array() as $row)
133 {
134 $val_str = '';
135
136 $i = 0;
137 foreach ($row as $v)
138 {
139 // Is the value NULL?
140 if ($v === NULL)
141 {
142 $val_str .= 'NULL';
143 }
144 else
145 {
146 // Escape the data if it's not an integer
147 $val_str .= ($is_int[$i] === FALSE) ? $this->db->escape($v) : $v;
148 }
149
150 // Append a comma
151 $val_str .= ', ';
152 $i++;
153 }
154
155 // Remove the comma at the end of the string
156 $val_str = preg_replace('/, $/' , '', $val_str);
157
158 // Build the INSERT string
159 $output .= 'INSERT INTO '.$this->db->protect_identifiers($table).' ('.$field_str.') VALUES ('.$val_str.');'.$newline;
160 }
161
162 $output .= $newline.$newline;
163 }
164
165 return $output;
Derek Allard2067d1a2008-11-13 22:59:24 +0000166 }
Andrey Andreev782de112012-06-12 03:04:50 +0300167
Derek Allard2067d1a2008-11-13 22:59:24 +0000168}
169
170/* End of file mysqli_utility.php */
Timothy Warren9cc5c602012-03-19 18:36:37 -0400171/* Location: ./system/database/drivers/mysqli/mysqli_utility.php */