Translation update done using Pootle.
[phpmyadmin/lorilee.git] / tbl_alter.php
blob4c00acd5ef9342a2160b60c91cdfc59ae10fde9f
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Alter one or more table columns
6 * linked from table_structure, uses libraries/tbl_properties.inc.php to display
7 * form and handles this form data
9 * @package phpMyAdmin
12 /**
13 * Gets some core libraries
15 require_once './libraries/common.inc.php';
17 require_once './libraries/header.inc.php';
19 // Check parameters
20 PMA_checkParameters(array('db', 'table'));
22 /**
23 * Gets tables informations
25 require_once './libraries/tbl_common.php';
26 require_once './libraries/tbl_info.inc.php';
28 $active_page = 'tbl_structure.php';
30 /**
31 * Defines the url to return to in case of error in a sql statement
33 $err_url = 'tbl_structure.php?' . PMA_generate_common_url($db, $table);
36 /**
37 * Modifications have been submitted -> updates the table
39 $abort = false;
40 if (isset($_REQUEST['do_save_data'])) {
41 $field_cnt = count($_REQUEST['field_orig']);
42 $key_fields = array();
43 $changes = array();
45 for ($i = 0; $i < $field_cnt; $i++) {
46 $changes[] = 'CHANGE ' . PMA_Table::generateAlter(
47 $_REQUEST['field_orig'][$i],
48 $_REQUEST['field_name'][$i],
49 $_REQUEST['field_type'][$i],
50 $_REQUEST['field_length'][$i],
51 $_REQUEST['field_attribute'][$i],
52 isset($_REQUEST['field_collation'][$i])
53 ? $_REQUEST['field_collation'][$i]
54 : '',
55 isset($_REQUEST['field_null'][$i])
56 ? $_REQUEST['field_null'][$i]
57 : 'NOT NULL',
58 $_REQUEST['field_default_type'][$i],
59 $_REQUEST['field_default_value'][$i],
60 isset($_REQUEST['field_extra'][$i])
61 ? $_REQUEST['field_extra'][$i]
62 : false,
63 isset($_REQUEST['field_comments'][$i])
64 ? $_REQUEST['field_comments'][$i]
65 : '',
66 $key_fields,
67 $i,
68 $_REQUEST['field_default_orig'][$i]
70 } // end for
72 // Builds the primary keys statements and updates the table
73 $key_query = '';
74 /**
75 * this is a little bit more complex
77 * @todo if someone selects A_I when altering a column we need to check:
78 * - no other column with A_I
79 * - the column has an index, if not create one
81 if (count($key_fields)) {
82 $fields = array();
83 foreach ($key_fields as $each_field) {
84 if (isset($_REQUEST['field_name'][$each_field]) && strlen($_REQUEST['field_name'][$each_field])) {
85 $fields[] = PMA_backquote($_REQUEST['field_name'][$each_field]);
87 } // end for
88 $key_query = ', ADD KEY (' . implode(', ', $fields) . ') ';
92 // To allow replication, we first select the db to use and then run queries
93 // on this db.
94 PMA_DBI_select_db($db) or PMA_mysqlDie(PMA_DBI_getError(), 'USE ' . PMA_backquote($db) . ';', '', $err_url);
95 // Optimization fix - 2 May 2001 - Robbat2
96 $sql_query = 'ALTER TABLE ' . PMA_backquote($table) . ' ' . implode(', ', $changes) . $key_query;
97 $result = PMA_DBI_try_query($sql_query);
99 if ($result !== false) {
100 $message = PMA_Message::success(__('Table %1$s has been altered successfully'));
101 $message->addParam($table);
102 $btnDrop = 'Fake';
105 * If comments were sent, enable relation stuff
107 require_once './libraries/transformations.lib.php';
109 // updaet field names in relation
110 if (isset($_REQUEST['field_orig']) && is_array($_REQUEST['field_orig'])) {
111 foreach ($_REQUEST['field_orig'] as $fieldindex => $fieldcontent) {
112 if ($_REQUEST['field_name'][$fieldindex] != $fieldcontent) {
113 PMA_REL_renameField($db, $table, $fieldcontent,
114 $_REQUEST['field_name'][$fieldindex]);
119 // update mime types
120 if (isset($_REQUEST['field_mimetype'])
121 && is_array($_REQUEST['field_mimetype'])
122 && $cfg['BrowseMIME']) {
123 foreach ($_REQUEST['field_mimetype'] as $fieldindex => $mimetype) {
124 if (isset($_REQUEST['field_name'][$fieldindex])
125 && strlen($_REQUEST['field_name'][$fieldindex])) {
126 PMA_setMIME($db, $table, $_REQUEST['field_name'][$fieldindex],
127 $mimetype,
128 $_REQUEST['field_transformation'][$fieldindex],
129 $_REQUEST['field_transformation_options'][$fieldindex]);
134 $active_page = 'tbl_structure.php';
135 require './tbl_structure.php';
136 } else {
137 PMA_mysqlDie('', '', '', $err_url, false);
138 // An error happened while inserting/updating a table definition.
139 // to prevent total loss of that data, we embed the form once again.
140 // The variable $regenerate will be used to restore data in libraries/tbl_properties.inc.php
141 if (isset($_REQUEST['orig_field'])) {
142 $_REQUEST['field'] = $_REQUEST['orig_field'];
145 $regenerate = true;
150 * No modifications yet required -> displays the table fields
152 * $selected comes from multi_submits.inc.php
154 if ($abort == false) {
155 if (! isset($selected)) {
156 PMA_checkParameters(array('field'));
157 $selected[] = $_REQUEST['field'];
158 $selected_cnt = 1;
159 } else { // from a multiple submit
160 $selected_cnt = count($selected);
164 * @todo optimize in case of multiple fields to modify
166 for ($i = 0; $i < $selected_cnt; $i++) {
167 $_REQUEST['field'] = PMA_sqlAddslashes($selected[$i], true);
168 $result = PMA_DBI_query('SHOW FULL COLUMNS FROM ' . PMA_backquote($table) . ' FROM ' . PMA_backquote($db) . ' LIKE \'' . $_REQUEST['field'] . '\';');
169 $fields_meta[] = PMA_DBI_fetch_assoc($result);
170 PMA_DBI_free_result($result);
172 $num_fields = count($fields_meta);
173 $action = 'tbl_alter.php';
175 // Get more complete field information.
176 // For now, this is done to obtain MySQL 4.1.2+ new TIMESTAMP options
177 // and to know when there is an empty DEFAULT value.
178 // Later, if the analyser returns more information, it
179 // could be executed to replace the info given by SHOW FULL FIELDS FROM.
181 * @todo put this code into a require()
182 * or maybe make it part of PMA_DBI_get_fields();
185 // We also need this to correctly learn if a TIMESTAMP is NOT NULL, since
186 // SHOW FULL FIELDS says NULL and SHOW CREATE TABLE says NOT NULL (tested
187 // in MySQL 4.0.25).
189 $show_create_table = PMA_DBI_fetch_value('SHOW CREATE TABLE ' . PMA_backquote($db) . '.' . PMA_backquote($table), 0, 1);
190 $analyzed_sql = PMA_SQP_analyze(PMA_SQP_parse($show_create_table));
191 unset($show_create_table);
193 * Form for changing properties.
195 require './libraries/tbl_properties.inc.php';
200 * Displays the footer
202 require './libraries/footer.inc.php';