I am using mySQL server and I came to know that mySQL uses both InnoDB and MYISAM engine.So I want to know for any big project which engine should I choose InnoDB or MYISAM.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
InnoDB may be preferable when you have many foreign key relationships to manage, as it has the ability MyISAM lacks to enforce foreign keys and cascade deletes and updates.
The other important feature of InnoDB is transactions. If you have a need to process multiple statements as transactions, use InnoDB.