我使用服务器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',
),
请帮助我,非常感谢
答案 0 :(得分:0)
在控制台中运行
sudo apt-get install php5-mysql
sudo service apache2 restart
或本机mysql驱动程序
sudo apt-get install php5-mysqlnd
sudo service apache2 restart