$this->_config
['driver_options'
][PDO::ATTR_PERSISTENT
] = true;
} try { $this->_connection =
new PDO( $dsn,
$this->_config
['username'
],
$this->_config
['password'
],
$this->_config
['driver_options'
] );
$this->_profiler->
queryEnd($q);
// set the PDO connection to perform case-folding on array keys, or not
$this->_connection->
setAttribute(PDO::ATTR_CASE,
$this->_caseFolding
);
// always use exceptions.
$this->_connection->
setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION
);
} catch (PDOException
$e) { /**
* @see Zend_Db_Adapter_Exception
*/