使用 Zend Framework 2 和 ODBC 驱动程序连接到 Linux 上的 MS SQL 服务器忙

Connection busy to MS SQL Server on Linux using Zend Framework 2 and ODBC Driver

我需要将 Windows 服务器设置迁移到 Linux (Red Hat 7.2) 服务器。之前我们在Windows机器上使用pdo_sqlsrv驱动。在 Linux 上,我们安装了 pdo_odbc 驱动程序。但是由于 Zend Framework 2 不支持开箱即用,我自己使用 ZF2 API 文档找到了一个数据库配置,现在可以使用了。这是配置:

'db' => array(
    'driver' => 'pdo',
    'username' => 'ourDbUsername',
    'password' => 'ourDbPassword',
    'dsn' => 'odbc:DRIVER={SQL Server Native Client 11.0};UID=ourDbUsername;PWD=ourDbPassword;DATABASE=ourDbName;SERVER=ourServerIP',
    'charset' => 'UTF-8'
),

到目前为止一切顺利。如果我们 运行 我们的应用程序一切都按预期进行,直到一个简单的 GET 请求每次都失败以获取对象的详细信息。即使我删除了在它之前执行的其他请求,我也无法使请求工作。即使以另一种方式链接请求也无济于事。这是错误:

Statement could not be executed (HY000 - 0 - [Microsoft][SQL Server Native Client 11.0]
Connection is busy with results for another command (SQLExecute[0] at /builddir/build/BUILD/php-5.4.16/ext/pdo_odbc/odbc_stmt.c:254) - HY000)

我们尝试设置 MARS_Connection(此处描述 How to fix native client error 'Connection is busy with results for another command'? smozgur 的回答)。但是我们没有这样一个/etc/odbc.ini文件,只有一个/etc/odbcinst.ini文件。所以我们的 /etc/odbcinst.ini 文件现在看起来像这样:

[ODBC Driver 11 for SQL Server]
Description=Microsoft ODBC Driver 11 for SQL Server
Driver=/opt/microsoft/msodbcsql/lib64/libmsodbcsql-11.0.so.2270.0
Threading=1
UsageCount=1
MARS_Connection=yes

我是否遗漏了我的设置中的某些内容以使其正常工作?

我试了一下我的数据库连接,结果发现添加 'MARS_Connection=yes;' 到我的 dsn 就可以了。

'db' => array(
    'driver' => 'pdo',
    'username' => 'ourDbUsername',
    'password' => 'ourDbPassword',
    'dsn' => 'odbc:DRIVER={SQL Server Native Client 11.0};UID=ourDbUsername;PWD=ourDbPassword;DATABASE=ourDbName;SERVER=ourServerIP;MARS_Connection=yes;',
    'charset' => 'UTF-8'
),

希望这可以帮助下一个搜索者!