php讀取mssql出現不能用 DB-Library(如 ISQL)或 ODBC 3.7
來(lái)源:昆明多彩網(wǎng)絡(luò )公司 日期:2010-12-31 閱讀: 發(fā)表評論
在用php腳本讀取mssql的時(shí)候發(fā)現無(wú)法讀取數據,發(fā)生錯誤。
完整的錯誤提示為:Warning: mssql_query() [function.mssql-query]: message: 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.
中文提示:Warning: mssql_query() [function.mssql-query]: message: 不能用 DB-Library(如 ISQL)或 ODBC 3.7 或更早版本將 ntext 數據或僅使用 Unicode 排序規則的 Unicode 數據發(fā)送到客戶(hù)端。
錯誤原因:mssql的text字段的編碼和php的內置編碼不一致導致的。
解決方法:$sql = "select CAST(test1 AS TEXT) AS test1 from tablename";
問(wèn)題解決。
發(fā)表評論評論列表(有 條評論)