CDbConnection failed to open the DB connection: could not find driver in Yii(CDbConnection 打开数据库连接失败:在 Yii 中找不到驱动程序)
问题描述
尝试在 yii 框架中连接 mysql 时,它显示
while trying to connect with mysql in yii framework it shows
CDbConnection 无法打开数据库连接:找不到驱动程序"错误
"CDbConnection failed to open the DB connection: could not find driver " error
php 代码:
'db'=>array(
'class' => 'CDbConnection',
'connectionString' => 'mysql:host=localhost:3306;dbname=testdrive',
'emulatePrepare' => true,
'username' => 'root',
'password' => 'root',
'charset' => 'utf8',
),
我的 php 驱动程序已经启用,但它显示相同的错误
my php drivers are already enabled , but it shows the same error
我正在使用 zend studio,为此使用 zend 服务器
Im using zend studio, zend server for this
我该如何解决这个问题?
how could i fix this?
推荐答案
你应该检查的事情
首先你应该检查 phpinfo() 是否安装了 pdo_drivers.
First you should check phpinfo() for the pdo_drivers installed.
如果你使用 IIS 服务器,你应该检查是否安装了 php 扩展.
if u use IIS server , you should check php extensions installed or not.
检查 php.ini 是否正确给出了 extensions_dir
check php.ini for extensions_dir is properly given
检查 php 中的 ext 文件夹是否包含 pdo_mysql dll
check you ext folder in php contains pdo_mysql dlls
有时可能是由于安装了 zend 服务器而出现问题.您应该检查 zend 服务器是否正确使用了 php 扩展
Some times the problem may occur due to zend server installation .You should check zend server is properly using the php extensions
之后使用以下函数检查简单的php-mysql连接
After that check simple php-mysql connection using the following functions
mysql_connect('localhost:3306','root','root');
mysql_select_db('testdrive');
如果可行,则使用 Yii、Slim、Zend php-mysql 连接
If it works then go with Yii, Slim, Zend php-mysql connections
这篇关于CDbConnection 打开数据库连接失败:在 Yii 中找不到驱动程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:CDbConnection 打开数据库连接失败:在 Yii 中找不到驱动程序


- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01