1

我正在尝试使用

$db = Zend_Db_Table::getDefaultAdapter();

但它返回 NULL

我试图添加

resources.db.isDefaultTableAdapter                  = true

在我的 application.ini 中,但根本没有任何变化......

在此先感谢您的帮助

4

2 回答 2

2

您应该将以下功能添加到 Bootstrap

protected function _initDatabase() {

    $db = $this->getPluginResource('db')->getDbAdapter();
    Zend_Db_Table::setDefaultAdapter($db); //important
    Zend_Registry::set('db', $db);    

}
于 2013-09-13T17:33:14.777 回答
0

尝试添加这个

SetEnv APPLICATION_ENV development

在文件 PROJECTNAME\public\.htaccess 的末尾

于 2013-10-02T14:42:44.833 回答