Difference Between InnoDB and MyISAM
1. The big difference between MySQL Table Type MyISAM and InnoDB is that InnoDB supports transaction
2. InnoDB supports some newer features: Transactions, row-level locking, foreign keys
3. InnoDB is for high volume, high performance
4.Most people use MyISAM if they need speed and InnoDB for data integrity
2. InnoDB supports some newer features: Transactions, row-level locking, foreign keys
3. InnoDB is for high volume, high performance
4.Most people use MyISAM if they need speed and InnoDB for data integrity
Comments
Post a Comment