21

我决定使用 FreeTDS 驱动程序和 unixODBC 来管理基于 LAMP 的应用程序与远程 MsSQL 数据库之间的 PDO 连接。不幸的是,驱动程序似乎没有读取 freetds.conf 文件,也没有直接通过服务器的 CLI 设置环境变量,也没有通过 putenv() 函数在 php 文件中指定环境变量。

现在一些数据:

  1. 当我 ping 服务器时 - 没有数据包丢失。
  2. 当我在 1433 端口上远程登录服务器时 - 连接已建立
  3. 当我使用命令时

    TDSVER=7.0 tsql -H >IP< -p 1433 -U username
    

    系统提示我输入密码并建立连接。

  4. 如果命令前面没有 TDSVER - 连接失败并显示以下消息:

    Error 20017 (severity 9):
        Unexpected EOF from the server
        OS error 115, "Operation now in progress"
    Error 20002 (severity 9):
        Adaptive Server connection failed
    There was a problem connecting to the server
    
  5. tsql -C 命令回显这样的输出:

    Compile-time settings (established with the "configure" script)
                           Version: freetds v0.91
            freetds.conf directory: /usr/local/etc
    MS db-lib source compatibility: yes
       Sybase binary compatibility: no
                     Thread safety: yes
                     iconv library: yes
                       TDS version: 5.0
                             iODBC: no
                          unixodbc: yes
             SSPI "trusted" logins: no
                          Kerberos: no
    
  6. 上面给出的位置的 freetds.conf 有这个条目:

    [MSSQL]
    host = >IP<
    port = 1433
    tds version = 7.0
    
  7. ISQL 也失败了:

    isql -v MSSQL
    [S1000][unixODBC][FreeTDS][SQL Server]Unable to connect to data source
    [01000][unixODBC][FreeTDS][SQL Server]Adaptive Server connection failed
    [ISQL]ERROR: Could not SQLConnect
    
  8. 我的 odbc.ini :

    [MSSQL]
    Description = MS SQL Server
    Driver = FreeTDS
    TDS_Version = 7.0
    Server = >IP<
    UID = username
    PWD = password
    ReadOnly = No
    Port = 1433
    

我想解决方案真的很简单,但我太愚蠢了,找不到它......

4

5 回答 5

29

今天花了很长时间调试一个类似的问题。我在 freetds.conf 中设置了“TDS 版本”,但它没有在我的 ODBC 连接中使用。在阅读了 freetds 源代码(connectparams.c:odbc_parse_connect_string)后,我发现:

  • 如果您的连接字符串使用“SERVER=”,则 freetds.conf 和 odbc.ini 都将被忽略
  • 如果您的连接字符串使用“SERVERNAME=”,则使用相应 freetds.conf 服务器中的设置
  • 如果您的连接字符串使用“DSN=”,则使用相应 odbc.ini DSN 中的设置

odbcinst.ini 是一个红鲱鱼。FreeTDS 从不检查设置。

您在连接字符串中指定的设置始终受到尊重。它还始终尊重 TDSVER 等环境变量。

于 2013-04-25T16:09:56.560 回答
9

我的直觉是你需要在你的 freetds.conf 和 odbc.ini 文件中将你的tds version = 7.0更改为tds version = 8.0并且你需要在你的 odbcinst.ini 文件中添加一些东西。这是我在 Ubuntu 12.04 服务器上与远程 MSSQL 服务器通信的内容:

freetds.conf

# Define a connection to the MSSQL server.
[mssql]
    host = myserver
    port = 1433
    tds version = 8.0

odbc.ini

# Define a connection to the MSSQL server.
# The Description can be whatever we want it to be.
# The Driver value must match what we have defined in /etc/odbcinst.ini
# The Database name must be the name of the database this connection will connect to.
# The ServerName is the name we defined in /etc/freetds/freetds.conf
# The TDS_Version should match what we defined in /etc/freetds/freetds.conf
[mssql]
Description             = MSSQL Server
Driver                  = freetds
Database                = MyDB
ServerName              = myserver
TDS_Version             = 8.0

odbcinst.ini

# Define where to find the driver for the Free TDS connections.
[freetds]
Description     = MS SQL database access with Free TDS
Driver          = /usr/lib/i386-linux-gnu/odbc/libtdsodbc.so
Setup           = /usr/lib/i386-linux-gnu/odbc/libtdsS.so
UsageCount      = 1
于 2012-10-25T13:35:03.583 回答
5

我遇到了同样的问题,但我的配置已经正确设置。问题是 freetds.conf 识别的 TDS 版本在新版本中发生了变化,但显然旧版本仍然在 TDSVER 环境变量中工作。一旦我将配置文件中的版本设置为 7.1 而不是 8.0,一切都开始工作了。

于 2013-03-07T15:25:44.790 回答
1

通过在我的文件TDSVER=7.0末尾添加以下内容解决了最初的问题:odbc.ini

[Default]
Driver=/usr/local/lib/libtdsodbc.so
于 2013-09-26T13:40:42.743 回答
0

而不是连接到IP,尝试连接到配置部分的名称?例如:

isql -v MSSQL
于 2012-10-25T10:43:56.740 回答