>데이터 베이스 >MySQL 튜토리얼 >Zend_Db_Table::getDefaultAdapter is not working_MySQL

Zend_Db_Table::getDefaultAdapter is not working_MySQL

WBOY
WBOY원래의
2016-06-01 13:08:04766검색

在Bootstrap中使用

$url = constant ( "APPLICATION_PATH" ) . DIRECTORY_SEPARATOR . 'configs' . DIRECTORY_SEPARATOR . 'application.ini';	$dbconfig = new Zend_Config_Ini ( $url, "mysql" );// $db = Zend_Db::factory ( $dbconfig->db );	$db = Zend_Db_Table::getDefaultAdapter ();	// var_dump ( $db );	$db->query ( "set names utf8" );	// Zend_Db_Table::setDefaultAdapter ( $db );

会出现$db不能实例化的情况,其中Application.ini文件的内容如下:

[mysql]resources.db.adatper=PDO_MYSQLresources.db.isDefaultTableAdapter = trueresources.db.params.host=localhostresources.db.params.username=rootresources.db.params.password=adminresources.db.params.dbname=hsp

在这种情况下需要使用如下方法:

$db = Zend_Db::factory ( 'PDO_MYSQL', array (	'host' => 'localhost',	'username' => 'root','password' => 'admin',	'dbname' => 'hsp' 	) );$db->query ( "set names utf8" );Zend_Db_Table::setDefaultAdapter ( $db );

这种方法可以正确的实例化$db。

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.