Possible Duplicate:
MyISAM versus InnoDB
Ok I read this information of Wikipedia and InnoDB seems better. Here is my question would it be OK to use InnoDB instead of MyISAM for selecting user data from the database? Or would it be better to stay with MyISAM for this.
And if I would to change to Inno would PDO still work with it and some old style query's?
$q = ("SELECT * ... );
$r = mysql_query($q);