MySQLi - Should every statement be prepared?
- by Kerry
I know its supposed to improve performance and clean strings, but lets say there are no variables?
Might just be a
SELECT COUNT( `column` ) AS count FROM `table`
Should that be prepared?
Is there any case that a SELECT statement should not be prepared?