Re:

From: "Hiroshi Saito" <saito(at)inetrt(dot)skcapi(dot)co(dot)jp>
To: "Andreas Pflug" <pgadmin(at)pse-consulting(dot)de>, "Serguei A(dot) Mokhov" <mokhov(at)cs(dot)concordia(dot)ca>
Cc: "Jean-Michel POURE" <jm(dot)poure(at)freesurf(dot)fr>, Ângelo Marcos Rigo <angelo_rigo(at)yahoo(dot)com(dot)br>, <pgadmin-hackers(at)postgresql(dot)org>
Subject: Re:
Date: 2003-10-01 16:29:08
Message-ID: 019001c38839$23560820$1f324d80@w2k
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

From: "Andreas Pflug" <pgadmin(at)pse-consulting(dot)de>

> Serguei A. Mokhov wrote:
>
> >Hi,
> >
> >I think I have a similar issue... A pgAdmin III user contacted me with the
> >question why they can't see the data in Russian and how to to solve the
> >problem. I queried them for more information. I think their data must be
> >encoded in some other encoding (e.g. KOI8-R) and when it gets to the
> >client side, it's not converted.
> >
> >
> This is correctly diagnosed, non-ascii data in a SQL_ASCII encoded
> database will not be shown because the server doesn't know how to encode
> it in Unicode.
>
> This is fixed for HEAD and BRANCH.

No.
Server encoding as below.
-- SQL_ASCII --> UNICODE
CREATE DEFAULT CONVERSION pg_catalog.ascii_to_utf_8 FOR 'SQL_ASCII' TO 'UNICODE' FROM ascii_to_utf8;
-- UNICODE --> SQL_ASCII
CREATE DEFAULT CONVERSION pg_catalog.utf_8_to_ascii FOR 'UNICODE' TO 'SQL_ASCII' FROM utf8_to_ascii;

regards,
Hiroshi Saito

In response to

  • Re: at 2003-10-01 16:25:25 from Andreas Pflug

Responses

  • Re: at 2003-10-01 16:42:20 from Serguei A. Mokhov
  • Re: at 2003-10-01 17:33:32 from Andreas Pflug

Browse pgadmin-hackers by date

  From Date Subject
Next Message Adam Witney 2003-10-01 16:32:53 Re: pgAdmin III under wxCocoa
Previous Message Andreas Pflug 2003-10-01 16:25:25 Re: