如果我没有在引导程序文件中显式地放置默认适配器,则Zend_DB_Tables没有默认适配器。我得到了:
Exception information:
Message: No adapter found for Application_Model_MyModel
当我加入bootstrap:
protected function _initDb(){
//this returns NULL
//Zend_Debug::dump(Zend_Db_Table::getDefaultAdapter());
$resource = $this->getPluginResource('db');
$db = $resource->getDbAdapter();
// Now it is not NULL
//Zend_Debug::dump($db);
Zend_Db_Table::setDefaultAdapter($db);
}
然后它有效。
这是正常行为还是ZendFramework-1.11.10中的错误?
我的app.ini文件如下:
resources.db.adapter = "Pdo_Mysql"
resources.db.isDefaultTableAdapter = true
resources.db.params.dbname = "mydb"
resources.db.params.username = "myuser"
resources.db.params.password = "mypass"
resources.db.params.host = "localhost"
resources.db.params.charset = "UTF8"
修改
事实证明我不允许使用_initDb()这个名字应该是别的东西否则我会得到循环依赖问题如果我做$ this-> bootstrap('db');
答案 0 :(得分:5)
它应该工作而不必明确定义Zend_Db_Table::setDefaultAdapter()
。您可能只缺少实例化$this->bootstrap('db')
资源的db
。
以下是我在appliction.ini中的代码
resources.db.adapter = "Pdo_Mysql"
resources.db.params.host = "dbhost"
resources.db.params.username = "username"
resources.db.params.password = "pass"
resources.db.params.dbname = "dbname"
resources.db.params.charset = "utf8"
resources.db.isDefaultTableAdapter = true
resources.db.profiler.enabled = true
resources.db.profiler.class = Zend_Db_Profiler_Firebug
以下是我在bootstrap中的代码
protected function _initDbAdapter()
{
$this->bootstrap('db');
$db = $this->getPluginResource('db');
// force UTF-8 connection
$stmt = new Zend_Db_Statement_Pdo(
$db->getDbAdapter(),
"SET NAMES 'utf8'"
);
$stmt->execute();
$dbAdapter = $db->getDbAdapter();
// Query profiler (if enabled and not in production)
$options = $db->getOptions();
if ($options['profiler']['enabled'] == true
&& APPLICATION_ENV != 'production'
) {
$profilerClass = $options['profiler']['class'];
$profiler = new $profilerClass('All DB Queries');
$profiler->setEnabled(true);
$dbAdapter->setProfiler($profiler);
}
Zend_Registry::set('db', $dbAdapter);
}
<强>更新强>
答案是通过评论找到的,结果如下:
方法_init + standard resource name
(即:db,log,session)在你的引导程序中自动运行,将你的数据库初始化的_init方法的名称改为_initDb
以外的其他方法。否则,如果您尝试$this->bootstrap(*resource name*)
,您将获得循环依赖。