2004-09-21 08:40:18 +00:00
|
|
|
<?php
|
|
|
|
|
2006-03-06 13:22:37 +00:00
|
|
|
require_once('../config.php');
|
|
|
|
|
|
|
|
$confirm = optional_param('confirm', 0, PARAM_BOOL);
|
2004-09-21 08:40:18 +00:00
|
|
|
|
|
|
|
require_login();
|
|
|
|
|
2006-08-25 08:27:27 +00:00
|
|
|
require_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM, SITEID));
|
2004-09-21 08:40:18 +00:00
|
|
|
|
|
|
|
print_header("Convert all tables from MYISAM to InnoDB", "Convert all tables from MYISAM to InnoDB",
|
|
|
|
"Convert all tables from MYISAM to InnoDB");
|
|
|
|
|
|
|
|
|
2006-03-06 13:22:37 +00:00
|
|
|
if ($confirm and confirm_sesskey()) {
|
2004-09-21 08:40:18 +00:00
|
|
|
|
|
|
|
print_heading("Please be patient and wait for this to complete...");
|
|
|
|
|
|
|
|
if ($tables = $db->MetaTables()) {
|
|
|
|
$db->debug = true;
|
|
|
|
foreach ($tables as $table) {
|
|
|
|
execute_sql("ALTER TABLE $table TYPE=INNODB; ");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2005-03-06 18:13:05 +00:00
|
|
|
notice_yesno("Are you sure you want convert all your tables to the InnoDB format?",
|
2006-03-06 13:22:37 +00:00
|
|
|
"innodb.php?confirm=1&sesskey=".sesskey(), "index.php");
|
2004-09-21 08:40:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|