Hi,
I mainly use Oracle for my projects. I found some problems with ZF:
1. NATURAL JOIN: all is explain in
ZF-31682. using function joinUsing(): a little correction in Zend_Db_Select detailed in
ZF-3152 in case of using option AUTO_QUOTE_IDENTIFIER = false
3. using function find(): a little correction in Zend_Db_Table_Abstract detailed in
ZF-3186 in case of using option AUTO_QUOTE_IDENTIFIER = false
4. using function save(): a little correction in Zend_Db_Table_Row_Abstract detailed in
ZF-3187 in case of using option AUTO_QUOTE_IDENTIFIER = false
5. When we use a row result from a fetchRow(), we have in _data the field 'zend_db_rownum'. If we want to apply a save() later, we have the 'zend_db_rownum' in the UPDATE string. I don't post an issue for this. I make modification in the constructor of Zend_Db_Table_Row_Abstract in which I realize:
unset($config['data']['zend_db_rownum']); // if isset
Mickael