CDbConnection无法打开数据库连接:找不到驱动程序

时间:2015-12-01 08:06:00

标签: yii

我使用服务器ubuntu 11.04安装apache2。连接数据库时遇到问题。这是我的错误:

CDbConnection failed to open the DB connection: could not find driver

这是mycode连接数据库:

 'db'=>array(
            'connectionString' => 'mysql:host=localhost;port=3306;dbname=server$
            'emulatePrepare' => true,
            'username' => 'root',
            'password' => '*****',
            'charset' => 'utf8',
        ),

请帮助我,非常感谢

1 个答案:

答案 0 :(得分:0)

在控制台中运行

sudo apt-get install php5-mysql
sudo service apache2 restart

或本机mysql驱动程序

sudo apt-get install php5-mysqlnd
sudo service apache2 restart