Re: Charset and encoding

Поиск
Список
Период
Сортировка
От Tatsuo Ishii
Тема Re: Charset and encoding
Дата
Msg-id 20010509205907D.t-ishii@sra.co.jp
обсуждение исходный текст
Ответ на Charset and encoding  (Rosa Maria Carro Salas <rosa.carro@ii.uam.es>)
Список pgsql-general
>     I have defined a database with the encoding SQL_ASCII. I fill the
> database by using embedded SQL. When I insert the value "Señales", it is
> correctly inserted. I read the correct value by typing the query in
> postgres, but when I access this database from a Java program, via JDBC,
> I obtain the value "Seqales". The LANG variable is set to "es_ES"
> (spanish) which I suppose is OK.
>
>     I have changed this database encoding to LATIN1 and set the client
> characterset to LATIN1 by typing  \encoding LATIN1.
>
>     Now when I access the data from postgres interface I obtain
> "Se(82f1)ales", and when I get the value through the Java program, I
> obtain
> "Se ñales".
>
>     Does anybody knows what is happening? Where can I find information
> about this?
>     Thanks in advance,
>     Rosa M. Carro

(82f1) is 0x82 (leading character for LATIN2) + 0xf1 (Spanish 'n'),
that is the intermediate representation in the backend when the
encoding translatin is necessary. My guess is you set the database
encoding to LATIN2, not LATIN1. Can you show me the result of the
query:

select * from pg_database;
--
Tatsuo Ishii

В списке pgsql-general по дате отправления:

Предыдущее
От: Frank Bax
Дата:
Сообщение: Re: Questions about indexes
Следующее
От: Rosa Maria Carro Salas
Дата:
Сообщение: Re: Charset and encoding