Michael Depetrillo schrieb:
How can I preserve the column case when using Zend_Db_Table? $db = Zend_Db::factory('PDO_MYSQL', $config->db->asArray());
You can extend the Zend_Db_Adapter_Pdo_Mysql class overriding the _connect() method to add functionality to preserve case and other things. Have a look at:
http://framework.zend.com/wiki/display/ZFMLGEN/mail/2294 Gunar
