I've extended the PDO class to create a simple DB class and currently use prepare + execute for all queries run to the database, even the ones that do not have parameters (e.g. SELECT * FROM table).
The question is: is there a performance benefit to actually use PDO::query for simple queries that do not have parameters, instead of prepare/execute?
PDOStatement, you are thinking ofPDO::exec, but that's not an issue here. – pmm Feb 10 '12 at 20:01