pymssql ntext字段调用问题解决方法

php中文网
发布: 2016-06-06 11:27:05
原创
1657人浏览过

下面是调用方式:

Example script - pymssql module (DB API 2.0)

Example script - _mssql module (lower level DB access)

不过,在我使用过程中,发现,如果表中包含了ntext字段,就会出错,提示

不能用 DB-Library(如 ISQL)或 ODBC 3.7 或更早版本将 ntext 数据或仅使用<br><br>Unicode排序规则的 Unicode 数据发送到客户端。
登录后复制

查了一下,发现官方网站有解释:

Q: What means "Unicode data in a Unicode-only collation or ntext data cannot be sent to clients using DB-Library"? A: If you connect to a SQL Server 2000 SP4 or SQL Server 2005, and if you make a SELECT query on a table that contains a column of type NTEXT, you may encounter the following error:_mssql.error: SQL Server message 4004, severity 16, state 1, line 1:Unicode data in a Unicode-only collation or ntext data cannot be sent to clients using DB-Library (such as ISQL) or ODBC version 3.7 or earlier.It's the SQL Server complaining that it doesn't support pure Unicode via TDS or older versions of ODBC. There's no fix for this error. Microsoft has deprecated DB-Library a long ago, in favor of ODBC, OLE DB, or SQL Native Client. Many new features of SQL 2005 aren't accessible via DB-Library so if you need them, you have to switch away from pymssql or other tools based on TDS and DB-Library. A workaround is to change the column type to NVARCHAR (it doesn't exhibit this behaviour), or TEXT.

大概意思是,这是因为我们的pymssql使用早期的ODBC函数集来获取数据。后来微软才引入了ntext和nvarchar类型,但Microsoft并没有更新他们的 C-library,所以就没办法支持了。建议:将ntext修改为nvarchar或text.

IT解决服务商响应式网站模板
IT解决服务商响应式网站模板

IT解决服务商响应式网站模板是一款适合各种IT问题解决方案和服务公司宣传网站模板下载。提示:本模板调用到谷歌字体库,可能会出现页面打开比较缓慢。

IT解决服务商响应式网站模板 35
查看详情 IT解决服务商响应式网站模板

显然,这不是个好的解决方法,那么是否就没有其他办法了呢?

还好,不用绝望,既然不支持ntext但支持text,那么我们只需要在输出时将ntext转换为text就好了,方法很简单:

<DIV><!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><SPAN style="COLOR: rgb(0,0,255)">SELECT</SPAN><SPAN style="COLOR: rgb(0,0,0)"> </SPAN><SPAN style="COLOR: rgb(255,0,255)">cast</SPAN><SPAN style="COLOR: rgb(0,0,0)"> ( field_name </SPAN><SPAN style="COLOR: rgb(0,0,255)">AS</SPAN><SPAN style="COLOR: rgb(0,0,0)"> </SPAN><SPAN style="FONT-WEIGHT: bold; COLOR: rgb(0,0,0)">TEXT</SPAN><SPAN style="COLOR: rgb(0,0,0)"> ) </SPAN><SPAN style="COLOR: rgb(0,0,255)">AS</SPAN><SPAN style="COLOR: rgb(0,0,0)"> field_name</SPAN></DIV>
登录后复制

唯一的问题,可能是ntext和text字段所支持的长度不一样,所以也许你还需要设置一下TEXTSIZE

<DIV><!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><SPAN style="COLOR: rgb(0,0,255)">SET</SPAN><SPAN style="COLOR: rgb(0,0,0)"> </SPAN><SPAN style="COLOR: rgb(0,0,255)">TEXTSIZE</SPAN><SPAN style="COLOR: rgb(0,0,0)"> </SPAN><SPAN style="FONT-WEIGHT: bold; COLOR: rgb(128,0,0)">65536</SPAN></DIV>
登录后复制

当然,你还可以将字段设置的大一点,这个就看你的需要了。

最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号