带有两个PHP版本的ODBC驱动程序

时间:2017-01-11 14:49:12

标签: php sql-server windows-server-2008-r2

我已经安装了php 5.6和已经存在的php 5.5

除了连接到sqlserver

之外,所有似乎都工作正常

这是我的测试PHP脚本:

$connectionInfo = array( "Database"=>"$DB", "UID"=>"$DBUSER", "PWD"=>"$DBPASS");

$cn = sqlsrv_connect($DBSERVER, $connectionInfo);
$strErrors = getSQLErrors();
if ($strErrors != "")
    die($strErrors);

sqlsrv_close($cn);

function getSQLErrors($ignoreWarnings = false)
{
        $retVal = "";
        $err = sqlsrv_errors();
        if ($err)
        {
                foreach( $err as $error )
                {
                        if (!$ignoreWarnings || ($ignoreWarnings && $error['SQLSTATE'] != 1000)) // ignore warnings
                                $retVal .= "SQLSTATE: ".$error[ 'SQLSTATE'].". Code: ".$error[ 'code'].". Message: ".$error[ 'message']."\r\n\r\n";
                }
        }

        return $retVal;
}

这是我得到的错误:

SQLSTATE: IMSSP. Code: -49. Message: This extension requires the Microsoft ODBC Driver 11 for SQL Server. Access the following URL t
o download the ODBC Driver 11 for SQL Server for x86: http://go.microsoft.com/fwlink/?LinkId=163712

SQLSTATE: IM002. Code: 0. Message: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified

我的ext文件夹和php.ini中已经有以下内容:

php_sqlsrv_56_nts.dll
php_pdo_sqlsrv_56_nts.dll

我的路径环境变量指向我的5.6 php。

php.ini文件中的相关路径也都指向5.6版本。

还有什么我需要注意的吗?在我拔掉头发之前,有人能帮助我吗?

1 个答案:

答案 0 :(得分:0)

事实证明错误消息中提供的链接不是我需要的链接。

我需要的文件是msodbcsql.msi

可在以下网址找到:https://www.microsoft.com/en-us/download/details.aspx?id=36434

作为补充说明。 PHP 7需要一个版本的Windows ODBC驱动程序,该版本不适用于win 2008 R2