Zend_Db::FETCH_MODE is not available before ZF 1.11 (ZF-6620)

* TODO: Check whether passing 'fetchMode' really works?!
This commit is contained in:
root 2013-08-20 20:35:54 +02:00 committed by Eric Lippmann
parent 8d4bc479f7
commit 72df979791
1 changed files with 2 additions and 1 deletions

View File

@ -83,7 +83,8 @@ class DbAdapterFactory implements ConfigAwareFactory
private static $defaultZendDbAdapterOptions = array(
Zend_Db::AUTO_QUOTE_IDENTIFIERS => false,
Zend_Db::CASE_FOLDING => Zend_Db::CASE_LOWER,
Zend_Db::FETCH_MODE => Zend_Db::FETCH_OBJ
// Zend_Db::FETCH_MODE => Zend_Db::FETCH_OBJ
'fetchMode' => Zend_Db::FETCH_OBJ
);
/**