Re: Problem with character encodings. - Mailing list pgsql-interfaces

From Jeroen T. Vermeulen
Subject Re: Problem with character encodings.
Date
Msg-id 13676.125.24.219.40.1188464231.squirrel@webmail.xs4all.nl
Whole thread Raw
In response to Problem with character encodings.  ("Korumilli, Bala S (GE Healthcare)" <Bala.Korumilli@ge.com>)
List 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 by date:

Previous
From: Tom Lane
Date:
Subject: Re: plpgsql: defuault parameters and constant function parameters
Next
From: "Jeroen T. Vermeulen"
Date:
Subject: Re: Problem with character encodings.