이 답변은 늦었지만 다른 사람들에게 도움이 될 수 있습니다. MySQL 서버에서 문제가 발생하는 것을 두려워하는 경우 phpMyAdmin에서 테이블을 만들 때 기본 엔진을 변경할 수 있습니다. MySQL 엔진의 기본 선택 작성기 StorageEngine.class.php
는 libraries
폴더 의이 기능입니다 (phpMyAdmin 3.5.8.2에서).
<?php
/**
* returns HTML code for storage engine select box
*
* @param string $name The name of the select form element
* @param string $id The ID of the form field
* @param string $selected The selected engine
* @param boolean $offerUnavailableEngines Should unavailable storage engines be offered?
*
* @static
* @return string html selectbox
*/
static public function getHtmlSelect($name = 'engine', $id = null,
$selected = null, $offerUnavailableEngines = false)
{
$selected = strtolower($selected);
$output = '<select name="' . $name . '"'
. (empty($id) ? '' : ' id="' . $id . '"') . '>' . "\n";
foreach (PMA_StorageEngine::getStorageEngines() as $key => $details) {
// Don't show PERFORMANCE_SCHEMA engine (MySQL 5.5)
// Don't show MyISAM for Drizzle (allowed only for temporary tables)
if (! $offerUnavailableEngines
&& ($details['Support'] == 'NO'
|| $details['Support'] == 'DISABLED'
|| $details['Engine'] == 'PERFORMANCE_SCHEMA')
|| (PMA_DRIZZLE && $details['Engine'] == 'MyISAM')
) {
continue;
}
$output .= ' <option value="' . htmlspecialchars($key). '"'
. (empty($details['Comment'])
? '' : ' title="' . htmlspecialchars($details['Comment']) . '"')
. (strtolower($key) == $selected || (empty($selected) && $details['Support'] == 'DEFAULT')
? ' selected="selected"' : '') . '>' . "\n"
. ' ' . htmlspecialchars($details['Engine']) . "\n"
. ' </option>' . "\n";
}
$output .= '</select>' . "\n";
return $output;
}
이 선택은 다음 쿼리에서 채워집니다.
SHOW STORAGE ENGINES
다음 코드는 MySQL 구성 파일로 설정된 기본 엔진을 선택합니다.
(empty($selected) && $details['Support'] == 'DEFAULT')
그러나 InnoDB를 기본 엔진으로 선택하도록 변경할 수 있습니다.
(empty($selected) && $details['Engine'] == 'InnoDB')