请帮助我深入了解此错误:
致命错误:未捕获的异常 'Doctrine_Connection_Exception' 带有消息'PDO 连接错误:SQLSTATE [28000] [1045] 用户'root'@'localhost' 的访问被拒绝(使用密码:否)'
检查了我的数据库配置文件,它读取正确,
下面是我的配置文件:
$db['default']['hostname'] = 'localhost';
$db['default']['username'] = 'root';
$db['default']['password'] = 'mypassword';
$db['default']['database'] = 'mydb';
$db['default']['dbdriver'] = 'mysql';
$db['default']['dbprefix'] = '';
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = TRUE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = '';
$db['default']['char_set'] = 'utf8';
$db['default']['dbcollat'] = 'utf8_general_ci';
$db['default']['swap_pre'] = '';
$db['default']['autoinit'] = TRUE;
$db['default']['stricton'] = FALSE;
如果有任何帮助,我正在运行 Doctrine 2.xx + COdeigniter 2.xx