MySQLi - Should every statement be prepared?
        Posted  
        
            by Kerry
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Kerry
        
        
        
        Published on 2010-06-02T20:17:40Z
        Indexed on 
            2010/06/02
            20:24 UTC
        
        
        Read the original article
        Hit count: 149
        
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 SELECTstatement should not be prepared?
© Stack Overflow or respective owner