Обсуждение: Re: [ODBC] pgAdmin2 UTF-8 support

Поиск
Список
Период
Сортировка

Re: [ODBC] pgAdmin2 UTF-8 support

От
Dave Page
Дата:

> -----Original Message-----
> From: Jean-Michel POURE [mailto:jm.poure@freesurf.fr]
> Sent: 25 February 2002 11:25
> To: Dave Page
> Cc: pgadmin-hackers@postgresql.org
> Subject: Re: [pgadmin-hackers] [ODBC] pgAdmin2 UTF-8 support
>
>
> Le Lundi 25 Février 2002 10:55, Dave Page a écrit :
> > Does it matter? I thought it was the client encoding that
> mattered: I
> > would guess that it should be set to EUC_JP.
>
> Yes, it matters. EUC_JP is a unix encoding. It will never
> display under
> Windows.

Yes, but my point is that setting the client encoding on the server worked
for latin, so would the same work for EUC_JP? Following other emails though,
I assume not because the PCs are already in latin1 and that is the big
difference?

/D

Re: [ODBC] pgAdmin2 UTF-8 support

От
Jean-Michel POURE
Дата:
Le Lundi 25 Février 2002 12:33, Dave Page a écrit :
> Yes, but my point is that setting the client encoding on the server worked
> for latin, so would the same work for EUC_JP? Following other emails
> though, I assume not because the PCs are already in latin1 and that is the
> big difference?

Latin is the other name for ISO-8859_1 which is the basic encoding of all
PCs. EUC_JP is not supported by Windows as it belongs to the Unix world.

But Windows has native support of Windows Japanese fonts. This is a
historical fact, before UTF-8, Windows could already display Japanese fonts.

So if we know what is the name of the encoding (let's call it WIN_JP), maybe
we can ask it be included in PostgreSQL server-side. This can easily be done
because PostgreSQL is based on Recode and iconv which support almost all
existing fonts/encodings.

Then, all we have to do is:
1) SET CLIENT_ENCODING = WIN_JP
2) select the right font in pgAdmin2
and this should work.

If it does not work, we can always ask a Japanese developper to recompile
pgAdmin2 on a localized version of VB. If there is a way to use VB under
Japanese systems, there is a solution for pgAdmin2...

Cheers,
Jean-Michel POURE