ZF-7627: Zend_Date localized and MySQL datetime column
Description
The localized format for Zend_Date in pl_PL has changed from yyyy-MM-dd HH:mm:ss to dd-MM-yyyy HH:mm:ss. Altought it is a correct format for the localization it's not compatible with MySQL datetime field witch now doesn't accept the velues generated by Zend_Date.
Comments
Posted by Thomas Weidner (thomas) on 2009-08-18T11:24:02.000+0000
When you want to store a date in a database then use the correct date format.
Localized formats are "localized" and not intended to be stored into a DB datefield. Look into Zend_Filter_LocalizedToNormalized or into your DB how to handle localized dates.
Closing as non issue.