Zend Framework 2 数据库错误
Zend Framework 2 Database Error
我是一个刚开始学习 Zend Framework 2 的新手。当我按照教程 http://framework.zend.com/manual/2.3/en/user-guide/database-and-models.html 进行操作时,我遇到了查找数据库的问题。
我发现它可以连接到localhost数据库,但是找不到任何数据库。
Connect Error: SQLSTATE[HY000] [1049] Unknown database 'db_vote'
只能找到数据库"mysql"。但是如果我在 "mysql".
中创建一个新的 table 就找不到新的 table
另一件奇怪的事情是我在 phpmyadmin 中更改了我的 root 密码,但在 zf2 中,如果我更改为新密码,它说访问被拒绝,但它适用于旧密码。
似乎 zend 正在连接到另一个 "localhost"?奇怪的想法...
任何人都可以帮助我吗?提前致谢。
Module.php 中的代码:
public function getServiceConfig(){
return array(
'factories' => array(
'Album\Model\AlbumTable' => function($sm){
$tableGateway = $sm->get('AlbumTableGateway');
$table = new AlbumTable($tableGateway);
return $table;
},
'AlbumTableGateway' => function($sm){
$dbAdapter = $sm->get('Zend\Db\Adapter\Adapter');
$resultSetPrototype = new ResultSet();
$resultSetPrototype->setArrayObjectPrototype(new Album());
return new TableGateway('album_zend', $dbAdapter, null, $resultSetPrototype);
},
),
);
}
global.php:
return array(
'db' => array(
'driver' => 'Pdo',
'dsn' => 'mysql:dbname=db_vote; host=localhost',
'driver_options'=> array(PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES \'UTF8\'' ),
),
'service_manager' => array(
'factories' => array(
'Zend\Db\Adapter\Adapter' => 'Zend\Db\Adapter\AdapterServiceFactory',
),
),
);
local.php:
return array(
'db' => array(
'username' => 'root',
'password' => 'xxxxxxx',
),
);
问题:
root@localhost
root@%
可以是两个不同的用户。
如果您查看 mysql 数据库中的用户 table,您会注意到不止一个根用户。 Web 应用程序的用户可能与您通过控制台连接时使用的用户不同。
如何调查:
检查哪个用户通过控制台(或您使用的任何其他工具)连接:
SELECT USER();
确保您坚持使用一个用户(例如 root@localhost)或确保网络应用程序用户具有正确的权限:
USE mysql;
SELECT * FROM db;
无论何时更改权限,都不要忘记刷新它们:
FLUSH PRIVILEGES;
我是一个刚开始学习 Zend Framework 2 的新手。当我按照教程 http://framework.zend.com/manual/2.3/en/user-guide/database-and-models.html 进行操作时,我遇到了查找数据库的问题。
我发现它可以连接到localhost数据库,但是找不到任何数据库。
Connect Error: SQLSTATE[HY000] [1049] Unknown database 'db_vote'
只能找到数据库"mysql"。但是如果我在 "mysql".
中创建一个新的 table 就找不到新的 table另一件奇怪的事情是我在 phpmyadmin 中更改了我的 root 密码,但在 zf2 中,如果我更改为新密码,它说访问被拒绝,但它适用于旧密码。
似乎 zend 正在连接到另一个 "localhost"?奇怪的想法... 任何人都可以帮助我吗?提前致谢。
Module.php 中的代码:
public function getServiceConfig(){
return array(
'factories' => array(
'Album\Model\AlbumTable' => function($sm){
$tableGateway = $sm->get('AlbumTableGateway');
$table = new AlbumTable($tableGateway);
return $table;
},
'AlbumTableGateway' => function($sm){
$dbAdapter = $sm->get('Zend\Db\Adapter\Adapter');
$resultSetPrototype = new ResultSet();
$resultSetPrototype->setArrayObjectPrototype(new Album());
return new TableGateway('album_zend', $dbAdapter, null, $resultSetPrototype);
},
),
);
}
global.php:
return array(
'db' => array(
'driver' => 'Pdo',
'dsn' => 'mysql:dbname=db_vote; host=localhost',
'driver_options'=> array(PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES \'UTF8\'' ),
),
'service_manager' => array(
'factories' => array(
'Zend\Db\Adapter\Adapter' => 'Zend\Db\Adapter\AdapterServiceFactory',
),
),
);
local.php:
return array(
'db' => array(
'username' => 'root',
'password' => 'xxxxxxx',
),
);
问题:
root@localhost
root@%
可以是两个不同的用户。
如果您查看 mysql 数据库中的用户 table,您会注意到不止一个根用户。 Web 应用程序的用户可能与您通过控制台连接时使用的用户不同。
如何调查:
检查哪个用户通过控制台(或您使用的任何其他工具)连接:
SELECT USER();
确保您坚持使用一个用户(例如 root@localhost)或确保网络应用程序用户具有正确的权限:
USE mysql;
SELECT * FROM db;
无论何时更改权限,都不要忘记刷新它们:
FLUSH PRIVILEGES;