Possible Duplicate:
Should I always prefer MySQL InnoDB over MyISAM?
I just wanna know in what situation we will use MyISAM? in what situation we will use INnoDB?
Possible Duplicate:
Should I always prefer MySQL InnoDB over MyISAM?
I just wanna know in what situation we will use MyISAM? in what situation we will use INnoDB?
http://www.kavoir.com/2009/09/mysql-engines-innodb-vs-myisam-a-comparison-of-pros-and-cons.html
http://tag1consulting.com/MySQL_Engines_MyISAM_vs_InnoDB
There are many differences, data integrity, locks, transactions to name a few, for good design u may wanna go through these links once. Pros and Cons are mentioned in detail in a simplistic manner
A very basic run-down of my decision-making is: "table-lock = MyISAM, row-lock = InnoDB".
Of course there's more to it than that, but that's all that really matters for me.