Ver Mensaje Individual
  #2 (permalink)  
Antiguo 08/06/2009, 20:17
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 5 meses
Puntos: 2135
Respuesta: Obtener valores de application.ini en Zend Framework

Pues obtener el resource the DB asi:
Código php:
Ver original
  1. public function algoAction() {
  2.         $db = $this->getInvokeArg('bootstrap')->getPluginResource('db')->getDbAdapter();
  3. }

o:
Código php:
Ver original
  1. public function algoAction() {
  2.         $db = Zend_Db_Table_Abstract::getDefaultAdapter();
  3. }

Saludos.

aS