How to check if MYSQL supports InnoDB or not?

Following SQL Queries are helpful in determining the InnoDB status of MYSQL:

1>

SHOW VARIABLES LIKE '%have_innodb%';

Result:
SHOW VARIABLES LIKE '%have_innodb%';

2>

SHOW ENGINES;

Result:
SHOW ENGINES;

You can use these queries in case of Magento too in order to determine the InnoDB status.

Cheers!!