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



我使用服务器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',
        ),

请帮帮我,非常感谢

在控制台中运行

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

或用于本地mysql驱动程序

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

最新更新