Mysql
 sql >> Database >  >> RDS >> Mysql

Come trovare il motore di archiviazione delle tabelle temporanee MySQL

Purtroppo :

Consiglierei di analizzare il risultato di SHOW CREATE TABLE temporary_table;

Per estrarre solo il MOTORE di questo valore restituito:

$rset = mysql_query('SHOW CREATE TABLE temporary_table;')
$row = mysql_fetch_array($rset, MYSQL_BOTH);
preg_match('/ENGINE\=(?P<engine>\w+)/', $row[1], $matches);
echo $matches['engine'];