nats Posted December 22, 2008 Share Posted December 22, 2008 Is there any way out to make InnoDB as my default storage engine rather than MyISAM?....in phpMyAdmin(xampp) Currently I have to change the settings in my.cnf file eveytime before I start....So I want a way out through which I can make InnoDB as my default engine... Link to comment https://forums.phpfreaks.com/topic/137956-database-engine-innodb/ Share on other sites More sharing options...
awpti Posted December 22, 2008 Share Posted December 22, 2008 Why not just specify the engine time in the CREATE TABLE line? CREATE TABLE blah ( .... .... .... ) ENGINE=INNODB; Link to comment https://forums.phpfreaks.com/topic/137956-database-engine-innodb/#findComment-721051 Share on other sites More sharing options...
nats Posted December 22, 2008 Author Share Posted December 22, 2008 That is what I'm presently doing.......explicitly mentioning the storage engine while creation of the tables.... But I wanted a way through which I can make InnoDB as the default engine so that the storage engine need not be specified repeatedly... Link to comment https://forums.phpfreaks.com/topic/137956-database-engine-innodb/#findComment-721232 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.