Re: UICODE SUPPORT IN 8.00.0102

From: Josef Springer <Josef(dot)Springer(at)JOOPS(dot)COM>
To: pgsql-odbc(at)postgresql(dot)org
Subject: Re: UICODE SUPPORT IN 8.00.0102
Date: 2005-08-05 08:54:37
Message-ID: 42F3294D.7030508@joops.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-odbc

I had the same problem with Win2k. The database encoding is UNICODE.
Reading with SET CLIENT_ENCODING=UNICODE worked, but writing did not
work. In ODBC 8.00.01.01 may be a problem with encoding on Win2k and
Win98. WinXP works well.

Josef Springer

CHEN wrote:

> server encoding : EUC_CN
> client: PSQLODBC8.00.0102 +WIN98
>
> When I select some chinese characters from sever, these characters
> display '?????'.
>
> SHOW CLIENT_ENCODING ----- EUC_CN
>
> SET CLIENT_ENCODING=UNICODE, Then characters display normal.
>
> So I need add this setting every time when connecting.
> But it don't nedd in psqlodbc8.00.0101.
>
> I think it is a bug:
> connetcion.c(download from src psqlodbc8.00.0102) line 1025:
>
> --------------------------------------------------------
> if (!self->client_encoding ||!stricmp(self->client_encoding, "UNICODE"))
> {
> CLIENT_ENDONG CHANGE TO UNICODE....
> --------------------------------------------------------
>
> should be(8.00.0101):
> --------------------------------------------------------
> if (!self->client_encoding ||stricmp(self->client_encoding, "UNICODE"))
> /*WHEN CLIENT_ENCODING IS NOT UNICODE ,THEN CHANGE TO UNICODE */
> {
> CLIENT_ENDONG CHANGE TO UNICODE....
>
> --------------------------------------------------------
>
> psqlodbc8.00XX is unicode version, ODBC level is working on unicode,
> so ODBC must set client_encodding to unicode only when connectting,
> ODBC muet prevent application from setting client_encodding to other
> encodding, and ODBC level transfer to application level using FUNCTION
> "utf8-->UCS2" AND "WideCharToMultiByte"
>
>
>
>
>
> 需要一个2000兆的免费邮箱吗?
> 网易免费邮箱是中国最多人使用的电子邮箱。 <http://mail.163.com>
>

In response to

Browse pgsql-odbc by date

  From Date Subject
Next Message Joel Fradkin 2005-08-05 13:13:27 error during build, I must of hosed something
Previous Message Dave Page 2005-08-05 07:48:33 Re: Use Declare/Fetch in new version