Connection between MSSQL and PHP 5.3.5 on IIS is not working

前端 未结 2 898
陌清茗
陌清茗 2020-12-07 23:31

I recently installed IIS, PHP 5.3.5 and MySQL, and had it all working.

I then has a requirement for MS SQL as well, and what I thought would be an easy task, is now

2条回答
  •  一整个雨季
    2020-12-08 00:19

    The above mentioned:

    extension=php_sqlsrv_53_nts_vc9.dll
    extension=php_pdo_sqlsrv_53_nts_vc9.dll

    what I found is incorrect.

    Therefore, it is likely to be:

    extension=php_sqlsrv_53_ts_vc9.dll
    extension=php_pdo_sqlsrv_53_ts_vc9.dll
    

提交回复
热议问题