2

我想我在 Debian 机器上的 FreeTDS 上使用 pyodbc 的 python 查询中遗漏了一些东西。我不能超过前 255 个字符。

如果我尝试按此处描述的 CAST SQL 数据:MS SQL Server 上的 ODBC 查询仅在 PHP PDO (FreeTDS) 中返回前 255 个字符SELECT CAST(myText as TEXT) FROM mytable 我得到空/零长度字符串,

我也进行了测试,但没有成功:使用下面的配置更改大小,我只得到前 255 个字符(例如,在我的 Win 框中 pyodbc 可以得到 279 个字符)。

这是一个示例查询:

SET TEXTSIZE 2147483647;
SELECT [id], myText , LEN(myText)
FROM    mytable

这是我的/etc/freetds/freetds/conf:( ; @ 行首的含义是什么?)

[global]
    # TDS protocol version
;   tds version = 4.2


#!!!added by me
client charset = UTF-8
text size = 4294967295 
#!!!/added by me

    # Whether to write a TDSDUMP file for diagnostic purposes
    # (setting this to /tmp is insecure on a multi-user system)
;   dump file = /tmp/freetds.log
;   debug flags = 0xffff

    # Command and connection timeouts
;   timeout = 10
;   connect timeout = 10

    # If you get out-of-memory errors, it may mean that your client
    # is trying to allocate a huge buffer for a TEXT field.  
    # Try setting 'text size' to a more reasonable limit 
    #!!!changed by me
    #text size = 64512

其他的conf文件是:

> cat /etc/odbc.ini #/etc/odbc.ini is empty! is it ok?
> cat /etc/odbcinst.ini
[FreeTDS]
Description=TDS driver (Sybase/MS SQL)
Driver=/usr/lib/odbc/libtdsodbc.so
Setup=/usr/lib/odbc/libtdsS.so
CPTimeout=
CPReuse=

我的 SQL 服务器已打开192.168.1.2,我使用以下方式连接:

cnstr = 'DRIVER={FreeTDS};SERVER=192.168.1.2;DATABASE=MyDBName;UID=MyUID;PWD=MYPASSWD'
cursor = cnxn.cursor()
cursor.execute(SQL)
# etc.

谢谢你的帮助,

此致

4

1 回答 1

2

是什么意思; @ 行首?

它开始评论。 man freetds.conf是你的朋友。:-)

我不能超过前 255 个字符。

我怀疑您使用的是协议版本 4.2,因为您使用的是无 DSN 连接并且没有提及设置默认值。还因为 TDS 4.2 将 VARCHAR 列限制为 255 个字符。

您可以将协议版本添加到连接字符串,参见。http://www.freetds.org/userguide/odbcconnattr.htm

于 2012-11-19T14:06:46.957 回答