Re: Problem with character encodings.

Поиск
Список
Период
Сортировка
От Jeroen T. Vermeulen
Тема Re: Problem with character encodings.
Дата
Msg-id 13676.125.24.219.40.1188464231.squirrel@webmail.xs4all.nl
обсуждение исходный текст
Ответ на Problem with character encodings.  ("Korumilli, Bala S (GE Healthcare)" <Bala.Korumilli@ge.com>)
Список pgsql-interfaces
On Wed, August 29, 2007 13:59, Korumilli, Bala S (GE Healthcare) wrote:

> If i use PGADMIN to run this query, '°' is properly inserted into
> database.
>
> But If i write a c++ program using LIBPQ to run this query, I get an error
> of invalid byte sequence like this..
>
> ERROR:  invalid byte sequence for encoding "UTF8".
>
> I also observed the same error comes for all the characters other than
> ascii(0-127).
> Is it a limitation of LibPQ library?

No.  Inserting and extracting characters like this should be no problem,
*if* they are properly encoded.


> The follwing information may be helpful to you.
> DataBase encoding: UTF8.
> client_encoding: UTF8
> Postgres version: 8.2.3

The database doesn't expose its encoding IIRC, only its character set.  So
it's possible that that should be Unicode, not UTF-8.

But how did you specify this special character in your C++ source file? 
Because if you typed it in directly as a non-ASCII character, it's quite
possible that your editor and your compiler disagree on encoding.  Or that
the compiler uses an encoding that does not happen to match the client
encoding.


Jeroen




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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: plpgsql: defuault parameters and constant function parameters
Следующее
От: "Jeroen T. Vermeulen"
Дата:
Сообщение: Re: Problem with character encodings.