Hi,
We can only change the character set and collations at the time of database creation.
If u want to change the default storage engine for the tables in the database.
Then after creating the database, use the below query
SET table_type = '<The Storage Engine Name which has to be set as default';
Thanks,
Scarlet
I would like to know whether its possible to specify the default engine type during the creation of a database.
Tried this...
create database main character set = utf8 collate=utf8_general_ci engine=innodb;
but didn't work.