我正在尝试使用
$db = Zend_Db_Table::getDefaultAdapter();
但它返回 NULL
我试图添加
resources.db.isDefaultTableAdapter = true
在我的 application.ini 中,但根本没有任何变化......
在此先感谢您的帮助
我正在尝试使用
$db = Zend_Db_Table::getDefaultAdapter();
但它返回 NULL
我试图添加
resources.db.isDefaultTableAdapter = true
在我的 application.ini 中,但根本没有任何变化......
在此先感谢您的帮助
您应该将以下功能添加到 Bootstrap
protected function _initDatabase() {
$db = $this->getPluginResource('db')->getDbAdapter();
Zend_Db_Table::setDefaultAdapter($db); //important
Zend_Registry::set('db', $db);
}
尝试添加这个
SetEnv APPLICATION_ENV development
在文件 PROJECTNAME\public\.htaccess 的末尾