dopa53272 2016-02-02 11:27
浏览 78
已采纳

Yii 1:连接到microsoft sql server时找不到驱动程序错误

I successfully tested that my PHP can connect to my MS SQL SERVER.

<?php

$server = 'SRV-MEXAL';

// Connect to MSSQL
$link = mssql_connect($server, 'mexal_db_usr', 'password_changed');

if (!$link) {
    die('Something went wrong while connecting to MSSQL');
} else {
    echo "Works <br>";
    $OK = mssql_select_db ("at6_rp");

    echo $OK ? "ok" : "ko";

}
?>

Using this script I got both Works and ok, so connection and db selection are both working.

I tried to configure my db connection into Yii 1 main.php

"mexal_db" => array (
        'class'                 => "CDbConnection",
        'connectionString'      => 'sqlsrv:Server=SRV-MEXAL; Database=at6_rp',
        'enableParamLogging'    => false,
        'username'              => 'mexal_db_usr',
        'password'              => 'password_changed',
        'charset'               => 'utf8',
    ),

But when trying to instantiate it, I got this exception

CDbException' with message 'CDbConnection failed to open the DB connection: could not find driver' in /var/www/httpdocs/test1.phonix.it/yii/framework/db/CDbConnection.php:399

What am I doing wrong?

  • 写回答

1条回答 默认 最新

  • drex88669 2016-02-02 11:45
    关注

    You will have php.ini inside your project folder. (In yii2, i am having inside web folder. In yii1, I don't know where php.ini file is located.) So, please find your php.ini file of your project folder.

    Inside php.ini, search for pdo_mssql.so.

    ;extension=pdo.so
    ;extension=pdo_mssql.so
    

    Remove ; from it. Like

    ;extension=pdo.so
    extension=pdo_mssql.so
    

    Restart your server. It will work.

    For more info, check this could not find driver - Yii

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)
  • ¥15 AIC3204的示例代码有吗,想用AIC3204测量血氧,找不到相关的代码。