'Zend_Db::CASE_NATURAL, Zend_Db::CASE_LOWER, Zend_Db::CASE_UPPER'
);
} } if (array_key_exists(Zend_Db::FETCH_MODE,
$options)) { if (is_string($options[Zend_Db::FETCH_MODE
])) { $constant = 'Zend_Db::FETCH_' .
strtoupper($options[Zend_Db::FETCH_MODE
]);
if (defined($constant)) { $options[Zend_Db::FETCH_MODE
] =
constant($constant);
} } $this->
setFetchMode((int) $options[Zend_Db::FETCH_MODE
]);
} // obtain quoting property if there is one
if (array_key_exists(Zend_Db::AUTO_QUOTE_IDENTIFIERS,
$options)) { $this->_autoQuoteIdentifiers =
(bool) $options[Zend_Db::AUTO_QUOTE_IDENTIFIERS
];
} // obtain allow serialization property if there is one
if (array_key_exists(Zend_Db::ALLOW_SERIALIZATION,
$options)) { $this->_allowSerialization =
(bool) $options[Zend_Db::ALLOW_SERIALIZATION
];
}