0
sqltreat posted
use of MySQL storage engines
what are the MySQL storage engines ?how to use MySQL storage engines ?
i export database i got this
CREATE TABLE IF NOT EXISTS `currencies` (
`currencies_id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(32) COLLATE latin1_general_ci NOT NULL DEFAULT '',
`last_updated` datetime DEFAULT NULL,
PRIMARY KEY (`currencies_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=6 ;
here ENGINE=MyISAM , it means what ?
i can say our ENGINE is MyISAM , MyISAM stand for what ? which are other ENGINE and what are the use of it ?