2004-09-21 08:40:18 +00:00
|
|
|
<?php
|
|
|
|
|
2008-05-15 21:40:00 +00:00
|
|
|
require_once('../config.php');
|
|
|
|
require_once($CFG->libdir.'/adminlib.php');
|
2007-04-30 17:08:34 +00:00
|
|
|
|
2008-05-15 21:40:00 +00:00
|
|
|
admin_externalpage_setup('toinodb');
|
2006-03-06 13:22:37 +00:00
|
|
|
|
2008-05-15 21:40:00 +00:00
|
|
|
$confirm = optional_param('confirm', 0, PARAM_BOOL);
|
2004-09-21 08:40:18 +00:00
|
|
|
|
2008-05-15 21:40:00 +00:00
|
|
|
require_login();
|
2004-09-21 08:40:18 +00:00
|
|
|
|
2008-05-15 21:40:00 +00:00
|
|
|
require_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM));
|
2004-09-21 08:40:18 +00:00
|
|
|
|
2008-05-15 21:40:00 +00:00
|
|
|
admin_externalpage_print_header();
|
|
|
|
print_heading('Convert all MySQL tables from MYISAM to InnoDB');
|
2004-09-21 08:40:18 +00:00
|
|
|
|
2008-11-05 00:12:30 +00:00
|
|
|
if ($DB->get_dbfamily() != 'mysql') {
|
2006-09-25 20:22:55 +00:00
|
|
|
notice('This function is for MySQL databases only!', 'index.php');
|
2008-05-15 21:40:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (data_submitted() and $confirm and confirm_sesskey()) {
|
|
|
|
|
|
|
|
notify('Please be patient and wait for this to complete...', 'notifysuccess');
|
|
|
|
|
|
|
|
if ($tables = $DB->get_tables()) {
|
|
|
|
$DB->set_debug(true);
|
|
|
|
foreach ($tables as $table) {
|
|
|
|
$fulltable = $DB->get_prefix().$table;
|
|
|
|
$DB->change_database_structure("ALTER TABLE $fulltable TYPE=INNODB");
|
|
|
|
}
|
|
|
|
$DB->set_debug(false);
|
|
|
|
}
|
|
|
|
notify('... done.', 'notifysuccess');
|
|
|
|
print_continue('index.php');
|
|
|
|
admin_externalpage_print_footer();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
$optionsyes = array('confirm'=>'1', 'sesskey'=>sesskey());
|
|
|
|
notice_yesno('Are you sure you want convert all your tables to the InnoDB format?',
|
|
|
|
'innodb.php', 'index.php', $optionsyes, NULL, 'post', 'get');
|
|
|
|
admin_externalpage_print_footer();
|
|
|
|
}
|
2004-09-21 08:40:18 +00:00
|
|
|
|
|
|
|
?>
|