AdSense

網頁

2019/6/15

MySQL 的預設引擎 (default storage engine)

MySQL 從5.5.5之後的預設引擎是InnoDB,而在之前的版本則是MyISAM

使用下面指令來查看目前資料庫的預設引擎設定

SHOW VARIABLES WHERE variable_name = 'default_storage_engine';

使用下面指令來修改目前連線的預設的引擎。

SET default_storage_engine = InnoDB;

或是修改MySQL安裝目錄下my.ini裡面的default-storage-engine的值為你想要的預設引擎。如此之後在MySQL建立的資料庫都會是你指定的引擎。



my.ini

# The default storage engine that will be used when create new tables when
default-storage-engine=INNODB

參考:

沒有留言:

AdSense