Puedes poner en tu bootstrap algo asi:
Código PHP:
Ver originalpublic function _initDb()
{
$db = Zend_D
::factory('Pdo_Mysql',array("host" => "localhost", "port" => "80",
"username" => "root",
"password" => "root",
"db" => "red"));
Zend_Db_Table_Abstract::setDefaultAdapter($adapter);
}
Aunque, ¿cual seria el proposito de hacer esto manual?