程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> 通過OLE DB連接MSSQL Server時出現亂碼的解決方法

通過OLE DB連接MSSQL Server時出現亂碼的解決方法

編輯:關於SqlServer
當使用OLE DB方式與MS SQL Server連接時,如果數據庫的代碼頁與本地的不同,當進行查詢時字符的返回值就會變成 ? 或是亂碼, 微軟的網站上說這是一個BUG, 並且描述如下:
When you try to retrieve character data from a column with different collation than the clIEnt code page in Microsoft SQL OLE DB Provider (SQLOLEDB), you may receive question marks (??) instead of correct data when all the following conditions are true:
?A connection is made against a Microsoft SQL Server 2000 database.
?SSPROP_IN99v_AUTOTRANSLATE is set to TRUE. SSPROP_IN99v_AUTOTRANSLATE is part of the provider-specific DBPROPSET_SQLSERVERDBIN99v property set.
?A column is bound to an OLEDB DBTYPE_WCHAR data type in the bindings structure.

我的解決方法是關掉 自動字符轉換. 例子如下:(PowerBuilder 中)
SQLCA.DBMS = 'OLE DB'
SQLCA.LogID = 'sa'
SQLCA.LogPass = ''
SQLCA.DBParm = “PROVIDER='SQLOLEDB', DataSource='my-server', CommitOnDisconnect='no', ProviderString='Database=mydb, AutoTranslate=no'”

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved