tags:

views:

29

answers:

2

what is the difference between innodb and myisam ? i see both of them as a type of engine in my mysql database.

+3  A: 

the main different is innodb support transactional, and then myisam is not

pnukeid
referential integrity too. But Full Text Search is only supported on MyISAM...
OMG Ponies
Typically MyISAM is used for logging tables, while InnoDB is much better suited for tables with important data that needs to maintain integrity.
Zoidberg