Re: Adding German Character Set to PostgresSQL

From: Adrian Klaver <adrian(dot)klaver(at)gmail(dot)com>
To: "Hagen Finley" <finhagen(at)comcast(dot)net>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Adding German Character Set to PostgresSQL
Date: 2012-01-03 00:54:12
Message-ID: 201201021654.13260.adrian.klaver@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Monday, January 02, 2012 4:37:18 pm Hagen Finley wrote:
> Yes I am running psql on Centos.
>
> My psql client won't accept the German characters whether or not I attempt
> to type them or paste them.
>

So to be clear did you try?:

create table x(a text);
insert into x values('ä,ß,ö');
SELECT * from x ;

If so can you show the result?
Also maybe tail the log file to see if anything show up there?

--
Adrian Klaver
adrian(dot)klaver(at)gmail(dot)com

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message roberto sanchez muñoz 2012-01-03 01:51:15 stop server
Previous Message Hagen Finley 2012-01-03 00:37:18 Re: Adding German Character Set to PostgresSQL