1 2 3 4 5 6 7 8 9 10 11 12 13
| $config = new Zend_Config_Ini(APPLICATION_PATH.'/configs/application.ini', 'production');
Zend_Registry::set('config', $config);
$dbAdapter = Zend_Db::factory($config->db->adapter, $config->db->config->toArray());
Zend_Db_Table::setDefaultAdapter($dbAdapter);
$dbAdapter = Zend_Db::factory($config->resource->db->adapter, array(
'host' => $config->resource->db->params->host,
'username' => $config->resource->db->params->username,
'password' => $config->resource->db->params->password,
'dbname' => $config->resource->db->params->dbname
));
$registry->set('dbAdapter', $dbAdapter ); |