Here follows a list of the currently known problems with prepared statements:
            TIME, TIMESTAMP, and
            DATETIME don't support sub seconds (for
            example from DATE_FORMAT().
          
            When converting an integer to string,
            ZEROFILL is honored with prepared
            statements in some cases where the MySQL server doesn't
            print the leading zeros. (For example, with
            MIN(number-with-zerofill)).
          
When converting a floating point number to a string in the client, the value may be slightly different in the last digits.
Prepared statements do not use the Query Cache, even in cases where a query does not contain any placeholders. See Sección 5.12.1, “Cómo opera la caché de consultas”.
Ésta es una traducción del manual de referencia de MySQL, que puede encontrarse en dev.mysql.com. El manual de referencia original de MySQL está escrito en inglés, y esta traducción no necesariamente está tan actualizada como la versión original. Para cualquier sugerencia sobre la traducción y para señalar errores de cualquier tipo, no dude en dirigirse a mysql-es@vespito.com.

