Feedback
Did this article resolve your question/issue?

   

Article

"utf8_spanish_ci" character set needs to be added to the SQL Server ODBC driver

Information

 
Title"utf8_spanish_ci" character set needs to be added to the SQL Server ODBC driver
URL Nameutf8-spanish-ci-character-set-needs-to-be-added-to-the-SQL-Server-ODBC-driver
Article Number000178192
EnvironmentProduct: Connect for ODBC SQL Server Driver
Version: 07.16.0190
OS: all supported platforms
Database: SQL Server
Application: all supported applications
Question/Problem Description
Incorrect spanish characters are returned when selecting data out of a SQL Server table with "utf8_spanish_ci" collation.
The "utf8_spanish_ci" character set needs to be supported by the driver.
Steps to Reproduce
Clarifying Information
1. Create the following table:

CREATE TABLE testu (col VARCHAR(10) NOT NULL COLLATE 'utf8_spanish_ci') COLLATE='utf8_spanish_ci' ENGINE=InnoDB

2. With a UNICODE application (SQL_ATTR_APP_WCHAR_TYPE (1061) has been specified in the code), insert the following spanish character:

INSERT INTO testu (col) VALUES ('ñ')

3. Select the record wuth the UNICODE application:

select * from testu

4. An incorrect character is returned:

col
±
Error Message
Defect NumberDefect 54686
Enhancement Number
Cause
Resolution
Workaround
Fixed in hot fix 07.16.0191. 
Refer to "Connect and Connect64 for ODBC hot fix download and install instructions" for instructions on how to download and install the hot fix.
Notes
Last Modified Date12/26/2016 7:17 AM
Files
Disclaimer The origins of the information on this site may be internal or external to Progress Software Corporation (“Progress”). Progress Software Corporation makes all reasonable efforts to verify this information. However, the information provided is for your information only. Progress Software Corporation makes no explicit or implied claims to the validity of this information.

Any sample code provided on this site is not supported under any Progress support program or service. The sample code is provided on an "AS IS" basis. Progress makes no warranties, express or implied, and disclaims all implied warranties including, without limitation, the implied warranties of merchantability or of fitness for a particular purpose. The entire risk arising out of the use or performance of the sample code is borne by the user. In no event shall Progress, its employees, or anyone else involved in the creation, production, or delivery of the code be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or other pecuniary loss) arising out of the use of or inability to use the sample code, even if Progress has been advised of the possibility of such damages.