2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * handles miscellaneous db operations:
10 * - viewing PDF schemas
18 require_once './libraries/common.inc.php';
19 require_once './libraries/mysql_charsets.lib.php';
22 * Rename/move or copy database
24 if (strlen($db) && (! empty($db_rename) ||
! empty($db_copy))) {
26 if (! empty($db_rename)) {
32 if (!isset($newname) ||
!strlen($newname)) {
33 $message = PMA_Message
::error(__('The database name is empty!'));
35 $sql_query = ''; // in case target db exists
38 (isset($create_database_before_copying) && $create_database_before_copying)) {
39 // lower_case_table_names=1 `DB` becomes `db`
40 $lower_case_table_names = PMA_DBI_fetch_value('SHOW VARIABLES LIKE "lower_case_table_names"', 0, 1);
41 if ($lower_case_table_names === '1') {
42 $newname = strtolower($newname);
45 $local_query = 'CREATE DATABASE ' . PMA_backquote($newname);
46 if (isset($db_collation)) {
47 $local_query .= ' DEFAULT' . PMA_generateCharsetQueryPart($db_collation);
50 $sql_query = $local_query;
51 // save the original db name because Tracker.class.php which
52 // may be called under PMA_DBI_query() changes $GLOBALS['db']
53 // for some statements, one of which being CREATE DATABASE
55 PMA_DBI_query($local_query);
59 // rebuild the database list because PMA_Table::moveCopy
60 // checks in this list if the target db exists
61 $GLOBALS['pma']->databases
->build();
64 if (isset($GLOBALS['add_constraints']) ||
$move) {
65 $GLOBALS['sql_constraints_query_full_db'] = array();
68 $tables_full = PMA_DBI_get_tables_full($db);
71 // remove all foreign key constraints, otherwise we can get errors
72 require_once './libraries/export/sql.php';
73 foreach ($tables_full as $each_table => $tmp) {
74 $sql_constraints = '';
75 $sql_drop_foreign_keys = '';
76 $sql_structure = PMA_getTableDef($db, $each_table, "\n", '', false, false);
77 if ($move && ! empty($sql_drop_foreign_keys)) {
78 PMA_DBI_query($sql_drop_foreign_keys);
80 // keep the constraint we just dropped
81 if (! empty($sql_constraints)) {
82 $GLOBALS['sql_constraints_query_full_db'][] = $sql_constraints;
85 unset($sql_constraints, $sql_drop_foreign_keys, $sql_structure);
88 foreach ($tables_full as $each_table => $tmp) {
89 // to be able to rename a db containing views, we
90 // first collect in $views all the views we find and we
91 // will handle them after the tables
93 * @todo support a view of a view
95 if (PMA_Table
::isView($db, $each_table)) {
96 $views[] = $each_table;
103 // value of $what for this table only
106 // do not copy the data from a Merge table
107 // note: on the calling FORM, 'data' means 'structure and data'
108 if (PMA_Table
::isMerge($db, $each_table)) {
109 if ($this_what == 'data') {
110 $this_what = 'structure';
112 if ($this_what == 'dataonly') {
113 $this_what = 'nocopy';
117 if ($this_what != 'nocopy') {
118 // keep the triggers from the original db+table
119 // (third param is empty because delimiters are only intended
120 // for importing via the mysql client or our Import feature)
121 $triggers = PMA_DBI_get_triggers($db, $each_table, '');
123 if (! PMA_Table
::moveCopy($db, $each_table, $newname, $each_table,
124 isset($this_what) ?
$this_what : 'data', $move, 'db_copy'))
127 // $sql_query is filled by PMA_Table::moveCopy()
128 $sql_query = $back . $sql_query;
131 // apply the triggers to the destination db+table
133 PMA_DBI_select_db($newname);
134 foreach ($triggers as $trigger) {
135 PMA_DBI_query($trigger['create']);
141 // this does not apply to a rename operation
142 if (isset($GLOBALS['add_constraints']) && !empty($GLOBALS['sql_constraints_query'])) {
143 $GLOBALS['sql_constraints_query_full_db'][] = $GLOBALS['sql_constraints_query'];
144 unset($GLOBALS['sql_constraints_query']);
147 // $sql_query is filled by PMA_Table::moveCopy()
148 $sql_query = $back . $sql_query;
154 foreach ($views as $view) {
155 if (! PMA_Table
::moveCopy($db, $view, $newname, $view,
156 'structure', $move, 'db_copy')) {
162 unset($view, $views);
164 // now that all tables exist, create all the accumulated constraints
165 if (! $_error && count($GLOBALS['sql_constraints_query_full_db']) > 0) {
166 PMA_DBI_select_db($newname);
167 foreach ($GLOBALS['sql_constraints_query_full_db'] as $one_query) {
168 PMA_DBI_query($one_query);
169 // and prepare to display them
170 $GLOBALS['sql_query'] .= "\n" . $one_query;
173 unset($GLOBALS['sql_constraints_query_full_db'], $one_query);
176 if (PMA_MYSQL_INT_VERSION
>= 50000) {
177 // here I don't use DELIMITER because it's not part of the
178 // language; I have to send each statement one by one
180 // to avoid selecting alternatively the current and new db
181 // we would need to modify the CREATE definitions to qualify
183 $procedure_names = PMA_DBI_get_procedures_or_functions($db, 'PROCEDURE');
184 if ($procedure_names) {
185 foreach($procedure_names as $procedure_name) {
186 PMA_DBI_select_db($db);
187 $tmp_query = PMA_DBI_get_definition($db, 'PROCEDURE', $procedure_name);
188 // collect for later display
189 $GLOBALS['sql_query'] .= "\n" . $tmp_query;
190 PMA_DBI_select_db($newname);
191 PMA_DBI_query($tmp_query);
195 $function_names = PMA_DBI_get_procedures_or_functions($db, 'FUNCTION');
196 if ($function_names) {
197 foreach($function_names as $function_name) {
198 PMA_DBI_select_db($db);
199 $tmp_query = PMA_DBI_get_definition($db, 'FUNCTION', $function_name);
200 // collect for later display
201 $GLOBALS['sql_query'] .= "\n" . $tmp_query;
202 PMA_DBI_select_db($newname);
203 PMA_DBI_query($tmp_query);
207 // go back to current db, just in case
208 PMA_DBI_select_db($db);
210 // Duplicate the bookmarks for this db (done once for each db)
211 if (! $_error && $db != $newname) {
212 $get_fields = array('user', 'label', 'query');
213 $where_fields = array('dbase' => $db);
214 $new_fields = array('dbase' => $newname);
215 PMA_Table
::duplicateInfo('bookmarkwork', 'bookmark', $get_fields,
216 $where_fields, $new_fields);
219 if (! $_error && $move) {
221 * cleanup pmadb stuff for this db
223 require_once './libraries/relation_cleanup.lib.php';
224 PMA_relationsCleanupDatabase($db);
226 // if someday the RENAME DATABASE reappears, do not DROP
227 $local_query = 'DROP DATABASE ' . PMA_backquote($db) . ';';
228 $sql_query .= "\n" . $local_query;
229 PMA_DBI_query($local_query);
231 $message = PMA_Message
::success(__('Database %s has been renamed to %s'));
232 $message->addParam($db);
233 $message->addParam($newname);
234 } elseif (! $_error) {
235 $message = PMA_Message
::success(__('Database %s has been copied to %s'));
236 $message->addParam($db);
237 $message->addParam($newname);
241 /* Change database to be used */
242 if (! $_error && $move) {
244 } elseif (! $_error) {
245 if (isset($switch_to_new) && $switch_to_new == 'true') {
246 $GLOBALS['PMA_Config']->setCookie('pma_switch_to_new', 'true');
249 $GLOBALS['PMA_Config']->setCookie('pma_switch_to_new', '');
253 if ($_error && ! isset($message)) {
254 $message = PMA_Message
::error();
261 * Settings for relations stuff
264 $cfgRelation = PMA_getRelationsParam();
267 * Check if comments were updated
268 * (must be done before displaying the menu tabs)
270 if (isset($_REQUEST['comment'])) {
271 PMA_setDbComment($db, $comment);
275 * Prepares the tables list if the user where not redirected to this script
276 * because there is no table in the database ($is_info is true)
278 if (empty($is_info)) {
279 require './libraries/db_common.inc.php';
280 $url_query .= '&goto=db_operations.php';
282 // Gets the database structure
283 $sub_part = '_structure';
284 require './libraries/db_info.inc.php';
287 if (isset($message)) {
288 PMA_showMessage($message, $sql_query);
293 $db_collation = PMA_getDbCollation($db);
294 if ($db == 'information_schema') {
295 $is_information_schema = true;
297 $is_information_schema = false;
300 if (!$is_information_schema) {
302 require './libraries/display_create_table.lib.php';
304 if ($cfgRelation['commwork']) {
309 <form method
="post" action
="db_operations.php">
310 <?php
echo PMA_generate_common_hidden_inputs($db); ?
>
313 <?php
echo PMA_getIcon('b_comment.png', __('Database comment: '), false, true); ?
>
315 <input type
="text" name
="comment" class="textfield" size
="30"
317 echo htmlspecialchars(PMA_getDBComment($db)); ?>" />
319 <fieldset
class="tblFooters">
320 <input type
="submit" value
="<?php echo __('Go'); ?>" />
329 <form method
="post" action
="db_operations.php"
330 onsubmit
="return emptyFormElements(this, 'newname')">
332 if (isset($db_collation)) {
333 echo '<input type="hidden" name="db_collation" value="' . $db_collation
337 <input type
="hidden" name
="what" value
="data" />
338 <input type
="hidden" name
="db_rename" value
="true" />
339 <?php
echo PMA_generate_common_hidden_inputs($db); ?
>
343 if ($cfg['PropertiesIconic']) {
344 echo '<img class="icon" src="' . $pmaThemeImage . 'b_edit.png"'
345 .' alt="" width="16" height="16" />';
347 echo __('Rename database to') . ':';
350 <input type
="text" name
="newname" size
="30" class="textfield" value
="" />
352 echo '(' . __('Command') . ': ';
354 * @todo (see explanations above in a previous todo)
356 //if (PMA_MYSQL_INT_VERSION >= XYYZZ) {
357 // echo 'RENAME DATABASE';
359 echo 'INSERT INTO ... SELECT';
363 <fieldset
class="tblFooters">
364 <input type
="submit" value
="<?php echo __('Go'); ?>" onclick
="return confirmLink(this, 'CREATE DATABASE ... <?php echo __('and then'); ?> DROP DATABASE <?php echo PMA_jsFormat($db); ?>')" />
373 <form method
="post" action
="db_operations.php"
374 onsubmit
="return emptyFormElements(this, 'newname')">
376 if (isset($db_collation)) {
377 echo '<input type="hidden" name="db_collation" value="' . $db_collation
380 echo '<input type="hidden" name="db_copy" value="true" />' . "\n";
381 echo PMA_generate_common_hidden_inputs($db);
386 if ($cfg['PropertiesIconic']) {
387 echo '<img class="icon" src="' . $pmaThemeImage . 'b_edit.png"'
388 .' alt="" width="16" height="16" />';
390 echo __('Copy database to') . ':';
391 $drop_clause = 'DROP TABLE / DROP VIEW';
394 <input type
="text" name
="newname" size
="30" class="textfield" value
="" /><br
/>
397 'structure' => __('Structure only'),
398 'data' => __('Structure and data'),
399 'dataonly' => __('Data only'));
400 PMA_display_html_radio('what', $choices, 'data', true);
403 <input type
="checkbox" name
="create_database_before_copying" value
="1"
404 id
="checkbox_create_database_before_copying"
406 <label
for="checkbox_create_database_before_copying">
407 <?php
echo __('CREATE DATABASE before copying'); ?
></label
><br
/>
408 <input type
="checkbox" name
="drop_if_exists" value
="true"
409 id
="checkbox_drop" />
410 <label
for="checkbox_drop"><?php
echo sprintf(__('Add %s'), $drop_clause); ?
></label
><br
/>
411 <input type
="checkbox" name
="sql_auto_increment" value
="1" checked
="checked"
412 id
="checkbox_auto_increment" />
413 <label
for="checkbox_auto_increment">
414 <?php
echo __('Add AUTO_INCREMENT value'); ?
></label
><br
/>
415 <input type
="checkbox" name
="add_constraints" value
="1"
416 id
="checkbox_constraints" />
417 <label
for="checkbox_constraints">
418 <?php
echo __('Add constraints'); ?
></label
><br
/>
422 if (isset($_COOKIE) && isset($_COOKIE['pma_switch_to_new'])
423 && $_COOKIE['pma_switch_to_new'] == 'true') {
424 $pma_switch_to_new = 'true';
427 <input type
="checkbox" name
="switch_to_new" value
="true"
429 <?php
echo ((isset($pma_switch_to_new) && $pma_switch_to_new == 'true') ?
' checked="checked"' : ''); ?
>
431 <label
for="checkbox_switch"><?php
echo __('Switch to copied database'); ?
></label
>
433 <fieldset
class="tblFooters">
434 <input type
="submit" name
="submit_copy" value
="<?php echo __('Go'); ?>" />
441 * Change database charset
443 echo '<form method="post" action="./db_operations.php">' . "\n"
444 . PMA_generate_common_hidden_inputs($db, $table)
445 . '<fieldset>' . "\n"
447 if ($cfg['PropertiesIconic']) {
448 echo '<img class="icon" src="' . $pmaThemeImage . 's_asci.png"'
449 .' alt="" width="16" height="16" />';
451 echo ' <label for="select_db_collation">' . __('Collation') . ':</label>' . "\n"
452 . ' </legend>' . "\n"
453 . PMA_generateCharsetDropdownBox(PMA_CSDROPDOWN_COLLATION
,
454 'db_collation', 'select_db_collation', $db_collation, false, 3)
456 . '<fieldset class="tblFooters">'
457 . ' <input type="submit" name="submitcollation"'
458 . ' value="' . __('Go') . '" />' . "\n"
459 . '</fieldset>' . "\n"
463 && !$cfgRelation['allworks'] && $cfg['PmaNoRelation_DisableWarning'] == false) {
464 $message = PMA_Message
::notice(__('The phpMyAdmin configuration storage has been deactivated. To find out why click %shere%s.'));
465 $message->addParam('<a href="' . $cfg['PmaAbsoluteUri'] . 'chk_rel.php?' . $url_query . '">', false);
466 $message->addParam('</a>', false);
467 /* Show error if user has configured something, notice elsewhere */
468 if (!empty($cfg['Servers'][$server]['pmadb'])) {
469 $message->isError(true);
473 } // end if (!$is_information_schema)
476 // not sure about displaying the PDF dialog in case db is information_schema
477 if ($cfgRelation['pdfwork'] && $num_tables > 0) { ?
>
478 <!-- Work on PDF Pages
-->
481 // We only show this if we find something in the new pdf_pages table
485 FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['pdf_pages']) . '
486 WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'';
487 $test_rs = PMA_query_as_controluser($test_query, null, PMA_DBI_QUERY_STORE
);
489 if ($test_rs && PMA_DBI_num_rows($test_rs) > 0) {
490 include('./libraries/display_pdf_schema.lib.php');
492 echo '<fieldset><a href="pdf_pages.php?' . $url_query . '">';
493 if ($cfg['PropertiesIconic']) {
494 echo '<img class="icon" src="' . $pmaThemeImage . 'b_edit.png"'
495 .' alt="" width="16" height="16" />';
497 echo __('Edit PDF Pages') . '</a></fieldset>';
501 * Displays the footer
503 require './libraries/footer.inc.php';