my phpmyadmin showing the table type are myisam ,
but my tables are innodb, Why it is showing as myisam , 
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.
MyISAMis the default storage engine on your server.You’ll note that next to each table it says
InnoDB. Your tables are InnoDB. The finalMyISAMis only there in the footer to indicate the default setting for your MySQL server.To change the default:
http://dev.mysql.com/doc/refman/5.0/en/storage-engines.html
If you are in a shared hosting environment—which is likely since you are using phpmyadmin—you may not be able to change the default. But it is largely irrelevant, since it’s only used if you omit the declaration when creating a new table. Since you select
InnoDBwhen creating tables, all of your tables areInnoDBnotMyISAM