Re: inserting non-ascii characters - Mailing list pgsql-novice

From Andreas Seltenreich
Subject Re: inserting non-ascii characters
Date
Msg-id 878xy5zgtt.fsf@gate450.dyndns.org
Whole thread Raw
In response to inserting non-ascii characters  ("Peter Schonefeld" <peter.schonefeld@bigpond.com>)
Responses Re: inserting non-ascii characters  ("Peter Schonefeld" <peter.schonefeld@bigpond.com>)
List pgsql-novice
Peter Schonefeld schrob:

> I'm having trouble finding out how to add non-ascii chars into the database
> from c#. 'ERROR: 22021: invalid byte sequence for encoding "UNICODE": 0xfc '
> is the error I get when attempting to add something like "müller" into a
> varchar field from my program.

I guess your client_encoding does not match the encoding of your data.
If the 0xfc is the "ü" in "müller", then your data is probably encoded
as latin-1 / iso-8859-1.

   set client_encoding to 'iso-8859-1';

before your statements should set up proper conversion.

HTH
Andreas
--

pgsql-novice by date:

Previous
From: "Peter Schonefeld"
Date:
Subject: inserting non-ascii characters
Next
From: "Peter Schonefeld"
Date:
Subject: Re: inserting non-ascii characters